diff --git a/crates/quarto-markdown-pandoc/CLAUDE.md b/crates/quarto-markdown-pandoc/CLAUDE.md index 039a584..ce8101f 100644 --- a/crates/quarto-markdown-pandoc/CLAUDE.md +++ b/crates/quarto-markdown-pandoc/CLAUDE.md @@ -19,10 +19,18 @@ need to be done with the traversal helpers in traversals.rs. - **IMPORTANT**: When making changes to the code, ALWAYS run both `cargo check` AND `cargo test` to ensure changes compile and don't affect behavior. The test suite is fast enough to run after each change. Never skip running `cargo test` - it must always be executed together with `cargo check`. - **CRITICAL**: Do NOT assume changes are safe if ANY tests fail, even if they seem unrelated. Some tests require pandoc to be properly installed to pass. Always ensure ALL tests pass before and after changes. -## Environment setup +## **CRITICAL**: HOW TO DO CODING WORK IN THIS REPO -- Rust toolchain is installed at `/home/claude-sandbox/.cargo/bin` -- Pandoc is installed at `/home/claude-sandbox/local/bin` +Whenever you start working on a coding task, follow these steps: + +- Make a plan to yourself. + - The plan should include adding appropriate tests to the test suite. + - Before implementing the feature, write the test that you think should fail, and ensure that the test fails the way you expect to! +- Work on the plan item by item. +- You are not done until the test you wrote passes. +- You are not done until the test you wrote is integrated to our test suite. +- If you run out of ideas and still can't make the test pass, do not erase the test. Report back to me and we will work on it together. +- If in the process of writing tests you run into an unexpected parse error, store it in a separate file and report it to me. We're still improving the parser and it's possible that you will run into bugs. # Error messages @@ -44,6 +52,7 @@ After changing any of the resources/error-corpus/*.{json,qmd} files, run the scr The `quarto-markdown-pandoc` binary accepts the following options: - `-t, --to `: Output format (default: native) +- `-f, --from `: Input format (default: qmd) - `-v, --verbose`: Verbose output - `-i, --input `: Input file (default: stdin) - `--loose`: Loose parsing mode @@ -52,8 +61,8 @@ The `quarto-markdown-pandoc` binary accepts the following options: ## Instructions -- in this repository, "qmd" means "quarto markdown", the dialect of markdown we are developing. Although we aim to be largely compatible with Pandoc, it is not necessarily the case that a discrepancy in the behavior is a bug. -- the qmd format only supports the inline syntax for a link [link](./target.html), and not the reference-style syntax [link][1]. +- In this repository, "qmd" means "quarto markdown", the dialect of markdown we are developing. Although we aim to be largely compatible with Pandoc, it is not necessarily the case that a discrepancy in the behavior is a bug. +- The qmd format only supports the inline syntax for a link [link](./target.html), and not the reference-style syntax [link][1]. - Always strive for test documents as small as possible. Prefer a large number of small test documents instead of small number of large documents. - When fixing bugs, always try to isolate and fix one bug at a time. - When fixing bugs using tests, run the failing test before attempting to fix issues. This helps ensuring that tests are exercising the failure as expected, and fixes actually fix the particular issue. diff --git a/crates/quarto-markdown-pandoc/src/filters.rs b/crates/quarto-markdown-pandoc/src/filters.rs index 1e91cba..3d9e0d6 100644 --- a/crates/quarto-markdown-pandoc/src/filters.rs +++ b/crates/quarto-markdown-pandoc/src/filters.rs @@ -742,6 +742,12 @@ pub fn topdown_traverse_block(block: Block, filter: &mut Filter) -> Blocks { }, )] } + Block::CaptionBlock(_) => { + // CaptionBlock should have been removed by postprocessing + panic!( + "CaptionBlock found in filter - should have been processed during postprocessing" + ) + } } } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/block.rs b/crates/quarto-markdown-pandoc/src/pandoc/block.rs index bcdd683..1558fe6 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/block.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/block.rs @@ -35,6 +35,7 @@ pub enum Block { BlockMetadata(MetaBlock), NoteDefinitionPara(NoteDefinitionPara), NoteDefinitionFencedBlock(NoteDefinitionFencedBlock), + CaptionBlock(CaptionBlock), } pub type Blocks = Vec; @@ -144,6 +145,12 @@ pub struct NoteDefinitionFencedBlock { pub source_info: SourceInfo, } +#[derive(Debug, Clone, PartialEq)] +pub struct CaptionBlock { + pub content: Inlines, + pub source_info: SourceInfo, +} + impl_source_location!( // blocks Plain, @@ -163,7 +170,8 @@ impl_source_location!( // quarto extensions MetaBlock, NoteDefinitionPara, - NoteDefinitionFencedBlock + NoteDefinitionFencedBlock, + CaptionBlock ); fn make_block_leftover(node: &tree_sitter::Node, input_bytes: &[u8]) -> Block { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 3a823c1..e5a3dc0 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -8,6 +8,7 @@ use crate::pandoc::treesitter_utils::attribute::process_attribute; use crate::pandoc::treesitter_utils::atx_heading::process_atx_heading; use crate::pandoc::treesitter_utils::backslash_escape::process_backslash_escape; use crate::pandoc::treesitter_utils::block_quote::process_block_quote; +use crate::pandoc::treesitter_utils::caption::process_caption; use crate::pandoc::treesitter_utils::citation::process_citation; use crate::pandoc::treesitter_utils::code_fence_content::process_code_fence_content; use crate::pandoc::treesitter_utils::code_span::process_code_span; @@ -86,6 +87,7 @@ fn get_block_source_info(block: &Block) -> &SourceInfo { Block::BlockMetadata(b) => &b.source_info, Block::NoteDefinitionPara(b) => &b.source_info, Block::NoteDefinitionFencedBlock(b) => &b.source_info, + Block::CaptionBlock(b) => &b.source_info, } } @@ -733,7 +735,7 @@ fn native_visitor( } "pipe_table_delimiter_row" => process_pipe_table_delimiter_row(children, context), "pipe_table_cell" => process_pipe_table_cell(node, children, context), - "table_caption" => PandocNativeIntermediate::IntermediateInlines(native_inlines(children)), + "caption" => process_caption(node, children, context), "pipe_table" => process_pipe_table(node, children, context), "setext_h1_underline" => PandocNativeIntermediate::IntermediateSetextHeadingLevel(1), "setext_h2_underline" => PandocNativeIntermediate::IntermediateSetextHeadingLevel(2), diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/caption.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/caption.rs new file mode 100644 index 0000000..e2ea1ac --- /dev/null +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/caption.rs @@ -0,0 +1,39 @@ +/* + * caption.rs + * + * Functions for processing caption nodes in the tree-sitter AST. + * + * Copyright (c) 2025 Posit, PBC + */ + +use crate::pandoc::ast_context::ASTContext; +use crate::pandoc::block::{Block, CaptionBlock}; +use crate::pandoc::inline::Inlines; +use crate::pandoc::location::node_source_info_with_context; + +use super::pandocnativeintermediate::PandocNativeIntermediate; + +pub fn process_caption( + node: &tree_sitter::Node, + children: Vec<(String, PandocNativeIntermediate)>, + context: &ASTContext, +) -> PandocNativeIntermediate { + let mut caption_inlines: Inlines = Vec::new(); + + for (node_name, child) in children { + if node_name == "inline" { + match child { + PandocNativeIntermediate::IntermediateInlines(inlines) => { + caption_inlines.extend(inlines); + } + _ => panic!("Expected Inlines in caption, got {:?}", child), + } + } + // Skip other nodes like ":", blank_line, etc. + } + + PandocNativeIntermediate::IntermediateBlock(Block::CaptionBlock(CaptionBlock { + content: caption_inlines, + source_info: node_source_info_with_context(node, context), + })) +} diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/mod.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/mod.rs index e471582..9365821 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/mod.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/mod.rs @@ -7,6 +7,7 @@ pub mod attribute; pub mod atx_heading; pub mod backslash_escape; pub mod block_quote; +pub mod caption; pub mod citation; pub mod code_fence_content; pub mod code_span; 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 767acde..760ca76 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs @@ -7,7 +7,7 @@ use crate::filters::{ Filter, FilterReturn::FilterResult, FilterReturn::Unchanged, topdown_traverse, }; use crate::pandoc::attr::{Attr, is_empty_attr}; -use crate::pandoc::block::{Block, DefinitionList, Div, Figure, Plain}; +use crate::pandoc::block::{Block, Blocks, DefinitionList, Div, Figure, Plain}; use crate::pandoc::caption::Caption; use crate::pandoc::inline::{Inline, Inlines, Space, Span, Str, Superscript}; use crate::pandoc::location::{Range, SourceInfo, empty_range, empty_source_info}; @@ -620,6 +620,42 @@ pub fn postprocess(doc: Pandoc) -> Result> { attr )); FilterResult(vec![], false) + }) + .with_blocks(|blocks| { + // Process CaptionBlock nodes: attach to preceding tables or issue warnings + let mut result: Blocks = Vec::new(); + + for block in blocks { + // Check if current block is a CaptionBlock + if let Block::CaptionBlock(caption_block) = block { + // Look for a preceding Table + if let Some(Block::Table(table)) = result.last_mut() { + // Attach caption to the table + table.caption = Caption { + short: None, + long: Some(vec![Block::Plain(Plain { + content: caption_block.content.clone(), + source_info: caption_block.source_info.clone(), + })]), + }; + // Don't add the CaptionBlock to the result (it's now attached) + } else { + // TODO: Issue a warning/error when proper error infrastructure is ready + // For now, print a warning to stderr + eprintln!( + "Warning: Caption found without a preceding table at {}:{}", + caption_block.source_info.range.start.row + 1, + caption_block.source_info.range.start.column + 1 + ); + // Remove the caption from the output (don't add to result) + } + } else { + // Not a CaptionBlock, add it to result + result.push(block); + } + } + + FilterResult(result, true) }); topdown_traverse(doc, &mut filter) }; diff --git a/crates/quarto-markdown-pandoc/src/writers/json.rs b/crates/quarto-markdown-pandoc/src/writers/json.rs index 6ae7c3b..58eb5ea 100644 --- a/crates/quarto-markdown-pandoc/src/writers/json.rs +++ b/crates/quarto-markdown-pandoc/src/writers/json.rs @@ -395,6 +395,11 @@ fn write_block(block: &Block) -> Value { "c": [refdef.id, write_blocks(&refdef.content)], "l": write_location(refdef), }), + Block::CaptionBlock(_) => { + panic!( + "CaptionBlock found in JSON writer - should have been processed during postprocessing" + ) + } } } diff --git a/crates/quarto-markdown-pandoc/src/writers/qmd.rs b/crates/quarto-markdown-pandoc/src/writers/qmd.rs index 79b01d2..cbdfc0e 100644 --- a/crates/quarto-markdown-pandoc/src/writers/qmd.rs +++ b/crates/quarto-markdown-pandoc/src/writers/qmd.rs @@ -680,6 +680,23 @@ fn write_table(table: &Table, buf: &mut dyn std::io::Write) -> std::io::Result<( } } + // Write caption if it exists + if let Some(ref long_caption) = table.caption.long { + if !long_caption.is_empty() { + writeln!(buf)?; // Blank line before caption + for block in long_caption { + // Extract inline content from Plain blocks in caption + if let Block::Plain(plain) = block { + write!(buf, ": ")?; + for inline in &plain.content { + write_inline(inline, buf)?; + } + writeln!(buf)?; + } + } + } + } + Ok(()) } @@ -1183,6 +1200,11 @@ fn write_block(block: &crate::pandoc::Block, buf: &mut dyn std::io::Write) -> st Block::NoteDefinitionFencedBlock(refdef) => { write_fenced_note_definition(refdef, buf)?; } + Block::CaptionBlock(_) => { + panic!( + "CaptionBlock found in QMD writer - should have been processed during postprocessing" + ) + } } Ok(()) } diff --git a/crates/quarto-markdown-pandoc/tests/roundtrip_tests/qmd-json-qmd/table-caption.qmd b/crates/quarto-markdown-pandoc/tests/roundtrip_tests/qmd-json-qmd/table-caption.qmd new file mode 100644 index 0000000..b736e98 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/roundtrip_tests/qmd-json-qmd/table-caption.qmd @@ -0,0 +1,6 @@ +| Name | Age | +|-------|-----| +| Alice | 30 | +| Bob | 25 | + +: Sample table caption diff --git a/crates/quarto-markdown-pandoc/tests/smoke/table.qmd b/crates/quarto-markdown-pandoc/tests/smoke/table.qmd new file mode 100644 index 0000000..6ed7758 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/smoke/table.qmd @@ -0,0 +1,5 @@ +| hello | world | +|-|-| +| 1 | 2 | + +Table: that doesn't work. \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd b/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd new file mode 100644 index 0000000..3fe00d2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd @@ -0,0 +1,5 @@ +Some paragraph text. + +: This is an orphaned caption + +Another paragraph. diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd.snapshot b/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd.snapshot new file mode 100644 index 0000000..f5970c0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/orphaned-caption.qmd.snapshot @@ -0,0 +1 @@ +[ Para [Str "Some", Space, Str "paragraph", Space, Str "text."], Para [Str "Another", Space, Str "paragraph."] ] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd new file mode 100644 index 0000000..2e247b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd @@ -0,0 +1,6 @@ +| Name | Age | +|-------|-----| +| Alice | 30 | +| Bob | 25 | + +Table: This should be a paragraph diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd.snapshot b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd.snapshot new file mode 100644 index 0000000..f4b2f20 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-no-caption-table-prefix.qmd.snapshot @@ -0,0 +1 @@ +[ Table ( "" , [] , [] ) (Caption Nothing []) [(AlignDefault, ColWidthDefault), (AlignDefault, ColWidthDefault)] (TableHead ( "" , [] , [] ) [Row ( "" , [] , [] ) [Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Name"]] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Age"]] ] ]) [TableBody ( "" , [] , [] ) (RowHeadColumns 0) [] [Row ( "" , [] , [] ) [Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Alice"]] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "30"]] ] , Row ( "" , [] , [] ) [Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Bob"]] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "25"]] ] ]] (TableFoot ( "" , [] , [] ) [] ), Para [Str "Table:", Space, Str "This", Space, Str "should", Space, Str "be", Space, Str "a", Space, Str "paragraph"] ] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd new file mode 100644 index 0000000..9e6f3e8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd @@ -0,0 +1,7 @@ +| Name | Age | +|-------|-----| +| Alice | 30 | + +This is a regular paragraph after the table. + +This is another paragraph. diff --git a/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd.snapshot b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd.snapshot new file mode 100644 index 0000000..dee9bba --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/snapshots/native/table-with-paragraphs-no-caption.qmd.snapshot @@ -0,0 +1 @@ +[ Table ( "" , [] , [] ) (Caption Nothing []) [(AlignDefault, ColWidthDefault), (AlignDefault, ColWidthDefault)] (TableHead ( "" , [] , [] ) [Row ( "" , [] , [] ) [Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Name"]] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Age"]] ] ]) [TableBody ( "" , [] , [] ) (RowHeadColumns 0) [] [Row ( "" , [] , [] ) [Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "Alice"]] , Cell ( "" , [] , [] ) AlignDefault (RowSpan 1) (ColSpan 1) [Plain [Str "30"]] ] ]] (TableFoot ( "" , [] , [] ) [] ), Para [Str "This", Space, Str "is", Space, Str "a", Space, Str "regular", Space, Str "paragraph", Space, Str "after", Space, Str "the", Space, Str "table."], Para [Str "This", Space, Str "is", Space, Str "another", Space, Str "paragraph."] ] \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/tests/table-para.qmd b/crates/quarto-markdown-pandoc/tests/table-para.qmd new file mode 100644 index 0000000..cfe07c2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/table-para.qmd @@ -0,0 +1,6 @@ +| Name | Age | +|-------|-----| +| Alice | 30 | +| Bob | 25 | + +And a para after. Huh? \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/tests/table-two-paras.qmd b/crates/quarto-markdown-pandoc/tests/table-two-paras.qmd new file mode 100644 index 0000000..2796a4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/table-two-paras.qmd @@ -0,0 +1,8 @@ +A para before. + +| Name | Age | +|-------|-----| +| Alice | 30 | +| Bob | 25 | + +And a para after. Huh? \ No newline at end of file diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index cffc7d1..0de8a1c 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -47,6 +47,7 @@ module.exports = grammar({ $.fenced_div_block, $._blank_line, $.pipe_table, + $.caption, prec(-1, $.minus_metadata), ), section: $ => choice($._section1, $._section2, $._section3, $._section4, $._section5, $._section6), @@ -250,6 +251,25 @@ module.exports = grammar({ // https://github.github.com/gfm/#blank-lines _blank_line: $ => seq($._blank_line_start, choice($._newline, $._eof)), + // A caption block: blank line followed by ": caption text" + // Used for table captions (and potentially other elements) + // Note: This matches a SINGLE colon only, not multiple colons (which would be fenced divs) + caption: $ => prec.right(seq( + $._blank_line, + ':', + optional(seq( + $._whitespace, + alias($._caption_line, $.inline) + )), + choice($._newline, $._eof), + )), + + // Caption line content - similar to _line but doesn't start with whitespace + _caption_line: $ => prec.right(seq( + choice($._word, $._display_math_state_track_marker, $._inline_math_state_track_marker, common.punctuation_without($, [])), + repeat(choice($._word, $._display_math_state_track_marker, $._inline_math_state_track_marker, $._whitespace, common.punctuation_without($, []))) + )), + // CONTAINER BLOCKS @@ -385,24 +405,8 @@ module.exports = grammar({ $.pipe_table_delimiter_row, repeat(seq($._pipe_table_newline, optional($.pipe_table_row))), choice($._newline, $._eof), - optional($.table_caption), )), - // Table caption: blank line followed by ": caption text" - // This is a Pandoc extension for table captions - table_caption: $ => prec(1, seq( - $._blank_line, - ':', - optional(seq( - optional($._whitespace), - alias($._table_caption_line, $.inline) - )), - choice($._newline, $._eof), - )), - - // Caption line content - similar to _line but only used in table_caption context - _table_caption_line: $ => prec.right(repeat1(choice($._word, $._display_math_state_track_marker, $._inline_math_state_track_marker, $._whitespace, common.punctuation_without($, [])))), - _pipe_table_newline: $ => seq( $._pipe_table_line_ending, optional($.block_continuation) 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 7d6a8a2..eb2ca40 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -2186,6 +2186,10 @@ "type": "SYMBOL", "name": "pipe_table" }, + { + "type": "SYMBOL", + "name": "caption" + }, { "type": "PREC", "value": -1, @@ -3414,9 +3418,415 @@ "type": "SYMBOL", "name": "_eof" } - ] - } - ] + ] + } + ] + }, + "caption": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_blank_line" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_caption_line" + }, + "named": true, + "value": "inline" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_eof" + } + ] + } + ] + } + }, + "_caption_line": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_display_math_state_track_marker" + }, + { + "type": "SYMBOL", + "name": "_inline_math_state_track_marker" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_word" + }, + { + "type": "SYMBOL", + "name": "_display_math_state_track_marker" + }, + { + "type": "SYMBOL", + "name": "_inline_math_state_track_marker" + }, + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "\"" + }, + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "$" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "'" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "," + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ";" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "_" + }, + { + "type": "STRING", + "value": "`" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "STRING", + "value": "~" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_last_token_punctuation" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + } + ] + } }, "block_quote": { "type": "SEQ", @@ -4784,82 +5194,6 @@ ] } }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "SYMBOL", - "name": "_eof" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "table_caption" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "table_caption": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_blank_line" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_table_caption_line" - }, - "named": true, - "value": "inline" - } - ] - }, - { - "type": "BLANK" - } - ] - }, { "type": "CHOICE", "members": [ @@ -4876,184 +5210,6 @@ ] } }, - "_table_caption_line": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_word" - }, - { - "type": "SYMBOL", - "name": "_display_math_state_track_marker" - }, - { - "type": "SYMBOL", - "name": "_inline_math_state_track_marker" - }, - { - "type": "SYMBOL", - "name": "_whitespace" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "STRING", - "value": "$" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "'" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": "?" - }, - { - "type": "STRING", - "value": "@" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "\\" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "_" - }, - { - "type": "STRING", - "value": "`" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "STRING", - "value": "~" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_last_token_punctuation" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - } - }, "_pipe_table_newline": { "type": "SEQ", "members": [ 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 bb93d82..77224b4 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 @@ -96,6 +96,10 @@ "type": "block_quote_marker", "named": true }, + { + "type": "caption", + "named": true + }, { "type": "fenced_code_block", "named": true @@ -147,6 +151,25 @@ ] } }, + { + "type": "caption", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_continuation", + "named": true + }, + { + "type": "inline", + "named": true + } + ] + } + }, { "type": "code_fence_content", "named": true, @@ -260,6 +283,10 @@ "type": "block_quote", "named": true }, + { + "type": "caption", + "named": true + }, { "type": "commonmark_attribute", "named": true @@ -471,6 +498,10 @@ "type": "block_quote", "named": true }, + { + "type": "caption", + "named": true + }, { "type": "fenced_code_block", "named": true @@ -592,6 +623,10 @@ "type": "block_quote", "named": true }, + { + "type": "caption", + "named": true + }, { "type": "fenced_code_block", "named": true @@ -689,10 +724,6 @@ { "type": "pipe_table_row", "named": true - }, - { - "type": "table_caption", - "named": true } ] } @@ -811,6 +842,10 @@ "type": "block_quote", "named": true }, + { + "type": "caption", + "named": true + }, { "type": "fenced_code_block", "named": true @@ -896,25 +931,6 @@ ] } }, - { - "type": "table_caption", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "block_continuation", - "named": true - }, - { - "type": "inline", - "named": true - } - ] - } - }, { "type": "thematic_break", "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 8450a1e..f8c577d 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1102 -#define LARGE_STATE_COUNT 479 +#define STATE_COUNT 1093 +#define LARGE_STATE_COUNT 473 #define SYMBOL_COUNT 203 #define ALIAS_COUNT 4 #define TOKEN_COUNT 97 @@ -154,36 +154,36 @@ enum ts_symbol_identifiers { 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_caption = 135, + sym__caption_line = 136, + sym_block_quote = 137, + sym_list = 138, + sym__list_plus = 139, + sym__list_minus = 140, + sym__list_star = 141, + sym__list_dot = 142, + sym__list_parenthesis = 143, + sym__list_example = 144, + sym_list_marker_plus = 145, + sym_list_marker_minus = 146, + sym_list_marker_star = 147, + sym_list_marker_dot = 148, + sym_list_marker_parenthesis = 149, + sym_list_marker_example = 150, + sym__list_item_plus = 151, + sym__list_item_minus = 152, + sym__list_item_star = 153, + sym__list_item_dot = 154, + sym__list_item_parenthesis = 155, + sym__list_item_example = 156, + sym__list_item_content = 157, + sym__newline = 158, + sym__soft_line_break = 159, + sym__code_line = 160, + sym__line = 161, + sym__atx_heading_line = 162, + sym__whitespace = 163, + sym_pipe_table = 164, sym__pipe_table_newline = 165, sym_pipe_table_delimiter_row = 166, sym_pipe_table_delimiter_cell = 167, @@ -209,13 +209,13 @@ enum ts_symbol_identifiers { 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__caption_line_repeat1 = 190, + aux_sym__list_plus_repeat1 = 191, + aux_sym__list_minus_repeat1 = 192, + aux_sym__list_star_repeat1 = 193, + aux_sym__list_dot_repeat1 = 194, + aux_sym__list_parenthesis_repeat1 = 195, + aux_sym__list_example_repeat1 = 196, aux_sym_pipe_table_repeat1 = 197, aux_sym_pipe_table_delimiter_row_repeat1 = 198, aux_sym_pipe_table_delimiter_cell_repeat1 = 199, @@ -364,6 +364,8 @@ static const char * const ts_symbol_names[] = { [sym_inline_ref_def] = "inline_ref_def", [sym_note_definition_fenced_block] = "note_definition_fenced_block", [sym__blank_line] = "_blank_line", + [sym_caption] = "caption", + [sym__caption_line] = "inline", [sym_block_quote] = "block_quote", [sym_list] = "list", [sym__list_plus] = "_list_plus", @@ -392,8 +394,6 @@ static const char * const ts_symbol_names[] = { [sym__atx_heading_line] = "inline", [sym__whitespace] = "_whitespace", [sym_pipe_table] = "pipe_table", - [sym_table_caption] = "table_caption", - [sym__table_caption_line] = "inline", [sym__pipe_table_newline] = "_pipe_table_newline", [sym_pipe_table_delimiter_row] = "pipe_table_delimiter_row", [sym_pipe_table_delimiter_cell] = "pipe_table_delimiter_cell", @@ -419,13 +419,13 @@ static const char * const ts_symbol_names[] = { [aux_sym_fenced_div_block_repeat1] = "fenced_div_block_repeat1", [aux_sym_code_fence_content_repeat1] = "code_fence_content_repeat1", [aux_sym_paragraph_repeat1] = "paragraph_repeat1", + [aux_sym__caption_line_repeat1] = "_caption_line_repeat1", [aux_sym__list_plus_repeat1] = "_list_plus_repeat1", [aux_sym__list_minus_repeat1] = "_list_minus_repeat1", [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", [aux_sym_pipe_table_delimiter_cell_repeat1] = "pipe_table_delimiter_cell_repeat1", @@ -574,6 +574,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_inline_ref_def] = sym_inline_ref_def, [sym_note_definition_fenced_block] = sym_note_definition_fenced_block, [sym__blank_line] = sym__blank_line, + [sym_caption] = sym_caption, + [sym__caption_line] = sym__caption_line, [sym_block_quote] = sym_block_quote, [sym_list] = sym_list, [sym__list_plus] = sym__list_plus, @@ -599,18 +601,16 @@ static const TSSymbol ts_symbol_map[] = { [sym__soft_line_break] = sym__soft_line_break, [sym__code_line] = sym__code_line, [sym__line] = sym__line, - [sym__atx_heading_line] = sym__atx_heading_line, + [sym__atx_heading_line] = sym__caption_line, [sym__whitespace] = sym__whitespace, [sym_pipe_table] = sym_pipe_table, - [sym_table_caption] = sym_table_caption, - [sym__table_caption_line] = sym__atx_heading_line, [sym__pipe_table_newline] = sym__pipe_table_newline, [sym_pipe_table_delimiter_row] = sym_pipe_table_delimiter_row, [sym_pipe_table_delimiter_cell] = sym_pipe_table_delimiter_cell, [sym_pipe_table_row] = sym_pipe_table_row, [sym__pipe_table_code_span] = sym__pipe_table_code_span, [sym__pipe_table_latex_span] = sym__pipe_table_latex_span, - [sym__pipe_table_cell_contents] = sym__atx_heading_line, + [sym__pipe_table_cell_contents] = sym__caption_line, [sym_pipe_table_cell] = sym_pipe_table_cell, [aux_sym_document_repeat1] = aux_sym_document_repeat1, [aux_sym_document_repeat2] = aux_sym_document_repeat2, @@ -629,13 +629,13 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_fenced_div_block_repeat1] = aux_sym_fenced_div_block_repeat1, [aux_sym_code_fence_content_repeat1] = aux_sym_code_fence_content_repeat1, [aux_sym_paragraph_repeat1] = aux_sym_paragraph_repeat1, + [aux_sym__caption_line_repeat1] = aux_sym__caption_line_repeat1, [aux_sym__list_plus_repeat1] = aux_sym__list_plus_repeat1, [aux_sym__list_minus_repeat1] = aux_sym__list_minus_repeat1, [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, [aux_sym_pipe_table_delimiter_cell_repeat1] = aux_sym_pipe_table_delimiter_cell_repeat1, @@ -1189,6 +1189,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_caption] = { + .visible = true, + .named = true, + }, + [sym__caption_line] = { + .visible = true, + .named = true, + }, [sym_block_quote] = { .visible = true, .named = true, @@ -1301,14 +1309,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_table_caption] = { - .visible = true, - .named = true, - }, - [sym__table_caption_line] = { - .visible = true, - .named = true, - }, [sym__pipe_table_newline] = { .visible = false, .named = true, @@ -1409,6 +1409,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__caption_line_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym__list_plus_repeat1] = { .visible = false, .named = false, @@ -1433,10 +1437,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__code_line_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_pipe_table_repeat1] = { .visible = false, .named = false, @@ -1516,7 +1516,7 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = sym_section, }, [5] = { - [0] = sym__atx_heading_line, + [0] = sym__caption_line, }, [6] = { [1] = alias_sym_attribute, @@ -1575,7 +1575,7 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_section, aux_sym_paragraph_repeat1, 2, aux_sym_paragraph_repeat1, - sym__atx_heading_line, + sym__caption_line, 0, }; @@ -1603,19 +1603,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [20] = 8, [21] = 2, [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, + [23] = 23, + [24] = 18, + [25] = 3, + [26] = 4, + [27] = 5, + [28] = 6, + [29] = 23, + [30] = 18, + [31] = 3, + [32] = 4, + [33] = 5, + [34] = 6, + [35] = 23, [36] = 36, [37] = 37, [38] = 38, @@ -1623,9 +1623,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [40] = 40, [41] = 41, [42] = 42, - [43] = 36, - [44] = 11, - [45] = 45, + [43] = 40, + [44] = 36, + [45] = 11, [46] = 46, [47] = 47, [48] = 48, @@ -1635,73 +1635,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [52] = 48, [53] = 47, [54] = 48, - [55] = 55, - [56] = 46, - [57] = 38, - [58] = 39, - [59] = 40, - [60] = 41, - [61] = 42, - [62] = 46, - [63] = 38, - [64] = 39, - [65] = 40, - [66] = 41, - [67] = 42, + [55] = 37, + [56] = 39, + [57] = 57, + [58] = 41, + [59] = 42, + [60] = 40, + [61] = 61, + [62] = 37, + [63] = 39, + [64] = 57, + [65] = 41, + [66] = 42, + [67] = 57, [68] = 68, [69] = 69, [70] = 70, [71] = 70, - [72] = 70, + [72] = 69, [73] = 69, - [74] = 69, + [74] = 70, [75] = 68, [76] = 68, [77] = 77, [78] = 78, [79] = 79, - [80] = 79, - [81] = 78, + [80] = 78, + [81] = 79, [82] = 78, [83] = 77, - [84] = 79, - [85] = 77, + [84] = 77, + [85] = 79, [86] = 86, [87] = 87, [88] = 88, - [89] = 86, - [90] = 87, - [91] = 86, - [92] = 88, - [93] = 88, + [89] = 88, + [90] = 88, + [91] = 87, + [92] = 86, + [93] = 86, [94] = 87, [95] = 95, [96] = 96, [97] = 97, [98] = 97, - [99] = 96, - [100] = 97, - [101] = 96, - [102] = 95, - [103] = 95, + [99] = 97, + [100] = 95, + [101] = 95, + [102] = 96, + [103] = 96, [104] = 104, [105] = 105, [106] = 106, - [107] = 106, - [108] = 104, - [109] = 104, - [110] = 106, - [111] = 105, - [112] = 105, + [107] = 104, + [108] = 105, + [109] = 106, + [110] = 105, + [111] = 106, + [112] = 104, [113] = 113, [114] = 114, [115] = 115, - [116] = 114, - [117] = 115, + [116] = 115, + [117] = 114, [118] = 113, - [119] = 114, - [120] = 115, - [121] = 113, + [119] = 113, + [120] = 114, + [121] = 115, [122] = 122, [123] = 123, [124] = 124, @@ -1718,52 +1718,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [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] = 148, - [149] = 123, + [138] = 123, + [139] = 134, + [140] = 137, + [141] = 124, + [142] = 132, + [143] = 135, + [144] = 129, + [145] = 133, + [146] = 146, + [147] = 133, + [148] = 133, + [149] = 132, [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, + [151] = 131, + [152] = 130, + [153] = 134, + [154] = 129, + [155] = 131, + [156] = 123, + [157] = 128, + [158] = 122, + [159] = 127, + [160] = 126, + [161] = 125, + [162] = 130, + [163] = 124, + [164] = 164, + [165] = 128, + [166] = 122, + [167] = 127, + [168] = 126, + [169] = 125, + [170] = 136, + [171] = 137, + [172] = 135, + [173] = 136, + [174] = 174, + [175] = 146, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 180, + [181] = 181, [182] = 182, - [183] = 148, + [183] = 183, [184] = 184, [185] = 185, [186] = 186, @@ -1771,36 +1771,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [188] = 188, [189] = 189, [190] = 190, - [191] = 191, - [192] = 192, + [191] = 150, + [192] = 133, [193] = 150, - [194] = 194, - [195] = 195, + [194] = 146, + [195] = 150, [196] = 196, - [197] = 197, + [197] = 164, [198] = 198, - [199] = 150, - [200] = 200, - [201] = 201, - [202] = 142, + [199] = 199, + [200] = 164, + [201] = 133, + [202] = 202, [203] = 203, - [204] = 196, - [205] = 197, - [206] = 186, - [207] = 187, - [208] = 208, - [209] = 209, + [204] = 180, + [205] = 174, + [206] = 185, + [207] = 186, + [208] = 181, + [209] = 150, [210] = 210, [211] = 211, [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, + [213] = 186, + [214] = 187, + [215] = 188, + [216] = 189, [217] = 217, [218] = 218, [219] = 219, - [220] = 220, + [220] = 178, [221] = 221, [222] = 222, [223] = 223, @@ -1809,17 +1809,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [226] = 226, [227] = 227, [228] = 228, - [229] = 229, + [229] = 177, [230] = 230, - [231] = 231, + [231] = 179, [232] = 232, [233] = 233, [234] = 234, - [235] = 235, - [236] = 194, + [235] = 174, + [236] = 236, [237] = 237, [238] = 238, - [239] = 239, + [239] = 185, [240] = 240, [241] = 241, [242] = 242, @@ -1830,8 +1830,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [247] = 247, [248] = 248, [249] = 249, - [250] = 250, - [251] = 201, + [250] = 184, + [251] = 251, [252] = 252, [253] = 253, [254] = 254, @@ -1843,75 +1843,75 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [260] = 260, [261] = 261, [262] = 262, - [263] = 185, + [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 195, - [268] = 196, - [269] = 123, + [267] = 267, + [268] = 268, + [269] = 146, [270] = 150, - [271] = 197, - [272] = 188, - [273] = 200, - [274] = 153, + [271] = 176, + [272] = 272, + [273] = 273, + [274] = 274, [275] = 275, [276] = 276, - [277] = 189, - [278] = 190, - [279] = 279, - [280] = 182, - [281] = 123, - [282] = 198, - [283] = 283, - [284] = 191, - [285] = 285, - [286] = 192, - [287] = 184, - [288] = 288, + [277] = 187, + [278] = 188, + [279] = 189, + [280] = 280, + [281] = 196, + [282] = 178, + [283] = 179, + [284] = 180, + [285] = 181, + [286] = 176, + [287] = 182, + [288] = 183, [289] = 289, [290] = 290, [291] = 291, - [292] = 182, - [293] = 185, - [294] = 186, - [295] = 198, - [296] = 187, - [297] = 297, - [298] = 188, + [292] = 292, + [293] = 293, + [294] = 198, + [295] = 295, + [296] = 296, + [297] = 199, + [298] = 190, [299] = 299, - [300] = 300, + [300] = 196, [301] = 301, [302] = 302, [303] = 303, - [304] = 304, + [304] = 182, [305] = 305, - [306] = 200, - [307] = 189, - [308] = 201, - [309] = 190, + [306] = 183, + [307] = 198, + [308] = 308, + [309] = 199, [310] = 310, - [311] = 311, - [312] = 194, - [313] = 191, - [314] = 192, - [315] = 195, - [316] = 184, + [311] = 190, + [312] = 312, + [313] = 184, + [314] = 177, + [315] = 315, + [316] = 316, [317] = 317, - [318] = 211, - [319] = 238, - [320] = 203, - [321] = 212, - [322] = 241, - [323] = 242, - [324] = 243, - [325] = 244, - [326] = 245, - [327] = 246, + [318] = 318, + [319] = 293, + [320] = 240, + [321] = 241, + [322] = 242, + [323] = 243, + [324] = 244, + [325] = 245, + [326] = 246, + [327] = 247, [328] = 248, [329] = 249, - [330] = 250, - [331] = 213, + [330] = 203, + [331] = 251, [332] = 252, [333] = 253, [334] = 254, @@ -1924,149 +1924,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [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, + [344] = 217, + [345] = 218, + [346] = 295, + [347] = 296, + [348] = 265, + [349] = 266, + [350] = 301, + [351] = 302, + [352] = 276, + [353] = 291, + [354] = 292, + [355] = 293, + [356] = 295, + [357] = 296, + [358] = 301, + [359] = 302, + [360] = 303, + [361] = 305, + [362] = 310, + [363] = 316, + [364] = 263, + [365] = 303, + [366] = 233, + [367] = 305, + [368] = 237, + [369] = 310, + [370] = 264, + [371] = 267, + [372] = 268, + [373] = 272, + [374] = 273, + [375] = 274, + [376] = 275, + [377] = 280, + [378] = 289, + [379] = 290, + [380] = 299, + [381] = 308, + [382] = 312, + [383] = 315, + [384] = 316, + [385] = 263, + [386] = 265, + [387] = 266, + [388] = 210, + [389] = 211, + [390] = 212, + [391] = 391, + [392] = 392, + [393] = 219, + [394] = 221, + [395] = 222, + [396] = 223, + [397] = 224, + [398] = 225, + [399] = 226, + [400] = 227, + [401] = 238, + [402] = 276, + [403] = 230, + [404] = 232, + [405] = 234, + [406] = 406, + [407] = 236, + [408] = 238, + [409] = 409, + [410] = 240, + [411] = 241, + [412] = 242, + [413] = 243, + [414] = 244, + [415] = 245, + [416] = 246, + [417] = 247, + [418] = 248, + [419] = 249, + [420] = 203, + [421] = 251, + [422] = 252, + [423] = 253, + [424] = 254, + [425] = 255, + [426] = 256, + [427] = 257, + [428] = 258, + [429] = 259, + [430] = 260, + [431] = 261, + [432] = 262, + [433] = 317, + [434] = 434, + [435] = 236, + [436] = 233, + [437] = 237, + [438] = 264, + [439] = 267, + [440] = 268, + [441] = 146, + [442] = 272, + [443] = 273, + [444] = 274, + [445] = 275, + [446] = 280, + [447] = 289, + [448] = 290, + [449] = 299, + [450] = 308, + [451] = 312, + [452] = 315, + [453] = 217, + [454] = 210, + [455] = 211, + [456] = 212, + [457] = 291, + [458] = 219, + [459] = 221, + [460] = 146, + [461] = 222, + [462] = 223, + [463] = 224, + [464] = 225, + [465] = 226, + [466] = 227, + [467] = 228, + [468] = 230, + [469] = 232, + [470] = 292, + [471] = 234, + [472] = 228, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, [479] = 479, [480] = 480, [481] = 481, - [482] = 482, + [482] = 481, [483] = 483, [484] = 484, [485] = 485, - [486] = 486, + [486] = 481, [487] = 487, [488] = 488, [489] = 489, @@ -2074,388 +2074,388 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [491] = 491, [492] = 492, [493] = 493, - [494] = 492, + [494] = 483, [495] = 495, - [496] = 496, - [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] = 497, - [512] = 492, - [513] = 482, + [496] = 488, + [497] = 493, + [498] = 484, + [499] = 485, + [500] = 483, + [501] = 495, + [502] = 488, + [503] = 493, + [504] = 484, + [505] = 485, + [506] = 495, + [507] = 475, + [508] = 477, + [509] = 509, + [510] = 510, + [511] = 476, + [512] = 512, + [513] = 478, [514] = 514, [515] = 515, [516] = 516, [517] = 517, - [518] = 483, + [518] = 518, [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [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] = 493, - [551] = 549, - [552] = 491, - [553] = 553, + [520] = 512, + [521] = 515, + [522] = 519, + [523] = 479, + [524] = 516, + [525] = 517, + [526] = 514, + [527] = 519, + [528] = 512, + [529] = 515, + [530] = 480, + [531] = 516, + [532] = 517, + [533] = 514, + [534] = 534, + [535] = 492, + [536] = 536, + [537] = 537, + [538] = 536, + [539] = 491, + [540] = 534, + [541] = 476, + [542] = 487, + [543] = 489, + [544] = 490, + [545] = 537, + [546] = 487, + [547] = 547, + [548] = 548, + [549] = 509, + [550] = 491, + [551] = 551, + [552] = 492, + [553] = 547, [554] = 554, - [555] = 508, - [556] = 556, - [557] = 557, - [558] = 556, - [559] = 493, - [560] = 554, - [561] = 553, - [562] = 556, - [563] = 563, + [555] = 554, + [556] = 547, + [557] = 551, + [558] = 558, + [559] = 554, + [560] = 518, + [561] = 547, + [562] = 489, + [563] = 551, [564] = 490, - [565] = 554, - [566] = 519, - [567] = 553, - [568] = 515, - [569] = 554, - [570] = 554, - [571] = 554, - [572] = 521, - [573] = 489, + [565] = 510, + [566] = 547, + [567] = 547, + [568] = 568, + [569] = 569, + [570] = 569, + [571] = 571, + [572] = 572, + [573] = 573, [574] = 574, [575] = 575, [576] = 576, [577] = 577, [578] = 578, [579] = 579, - [580] = 580, - [581] = 575, + [580] = 568, + [581] = 581, [582] = 582, - [583] = 574, - [584] = 584, + [583] = 582, + [584] = 573, [585] = 585, - [586] = 586, - [587] = 575, + [586] = 585, + [587] = 587, [588] = 588, - [589] = 577, - [590] = 590, - [591] = 591, - [592] = 584, - [593] = 576, + [589] = 589, + [590] = 587, + [591] = 587, + [592] = 592, + [593] = 593, [594] = 594, [595] = 595, [596] = 596, - [597] = 597, + [597] = 588, [598] = 598, [599] = 599, - [600] = 599, - [601] = 601, + [600] = 600, + [601] = 585, [602] = 602, - [603] = 603, - [604] = 599, - [605] = 597, - [606] = 606, - [607] = 595, - [608] = 608, - [609] = 597, - [610] = 610, - [611] = 601, - [612] = 601, - [613] = 578, - [614] = 597, - [615] = 579, - [616] = 588, - [617] = 123, - [618] = 595, - [619] = 597, - [620] = 620, - [621] = 591, - [622] = 622, - [623] = 586, - [624] = 590, - [625] = 123, - [626] = 626, - [627] = 598, - [628] = 628, - [629] = 588, + [603] = 585, + [604] = 572, + [605] = 605, + [606] = 133, + [607] = 576, + [608] = 588, + [609] = 585, + [610] = 577, + [611] = 578, + [612] = 612, + [613] = 613, + [614] = 575, + [615] = 133, + [616] = 579, + [617] = 617, + [618] = 598, + [619] = 572, + [620] = 578, + [621] = 577, + [622] = 594, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 589, + [627] = 576, + [628] = 150, + [629] = 575, [630] = 630, - [631] = 123, - [632] = 632, - [633] = 578, - [634] = 579, - [635] = 153, - [636] = 636, - [637] = 588, - [638] = 636, - [639] = 588, - [640] = 588, + [631] = 572, + [632] = 150, + [633] = 633, + [634] = 634, + [635] = 630, + [636] = 133, + [637] = 630, + [638] = 638, + [639] = 599, + [640] = 579, [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, + [642] = 572, + [643] = 572, + [644] = 585, + [645] = 645, + [646] = 630, + [647] = 572, + [648] = 630, + [649] = 649, + [650] = 650, + [651] = 572, + [652] = 150, + [653] = 572, + [654] = 654, [655] = 655, - [656] = 588, - [657] = 636, - [658] = 153, - [659] = 659, - [660] = 588, - [661] = 661, - [662] = 662, - [663] = 663, - [664] = 641, - [665] = 588, - [666] = 666, - [667] = 636, - [668] = 668, - [669] = 666, - [670] = 663, - [671] = 668, - [672] = 662, - [673] = 661, - [674] = 663, - [675] = 668, - [676] = 662, - [677] = 666, - [678] = 641, - [679] = 679, - [680] = 655, - [681] = 655, - [682] = 682, - [683] = 588, - [684] = 588, + [656] = 656, + [657] = 654, + [658] = 658, + [659] = 658, + [660] = 660, + [661] = 658, + [662] = 660, + [663] = 638, + [664] = 660, + [665] = 654, + [666] = 630, + [667] = 638, + [668] = 655, + [669] = 656, + [670] = 656, + [671] = 671, + [672] = 672, + [673] = 649, + [674] = 671, + [675] = 572, + [676] = 649, + [677] = 671, + [678] = 678, + [679] = 572, + [680] = 680, + [681] = 572, + [682] = 680, + [683] = 572, + [684] = 684, [685] = 685, - [686] = 588, - [687] = 685, + [686] = 686, + [687] = 687, [688] = 688, [689] = 689, [690] = 690, [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 694, + [692] = 690, + [693] = 691, + [694] = 690, + [695] = 691, [696] = 696, - [697] = 696, - [698] = 696, - [699] = 694, + [697] = 697, + [698] = 698, + [699] = 699, [700] = 700, [701] = 701, [702] = 702, [703] = 703, [704] = 704, [705] = 705, - [706] = 706, + [706] = 701, [707] = 707, - [708] = 708, - [709] = 709, - [710] = 706, + [708] = 705, + [709] = 703, + [710] = 707, [711] = 705, - [712] = 712, - [713] = 705, - [714] = 706, - [715] = 712, - [716] = 712, - [717] = 707, - [718] = 707, + [712] = 701, + [713] = 703, + [714] = 707, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, [719] = 719, [720] = 720, - [721] = 721, + [721] = 719, [722] = 722, - [723] = 723, - [724] = 722, + [723] = 718, + [724] = 724, [725] = 725, [726] = 726, [727] = 727, [728] = 728, [729] = 729, - [730] = 723, - [731] = 726, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 232, - [736] = 736, - [737] = 728, - [738] = 729, - [739] = 723, - [740] = 726, - [741] = 722, - [742] = 732, - [743] = 743, - [744] = 728, - [745] = 745, - [746] = 732, - [747] = 729, + [730] = 730, + [731] = 725, + [732] = 719, + [733] = 722, + [734] = 718, + [735] = 724, + [736] = 725, + [737] = 726, + [738] = 726, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 722, + [743] = 218, + [744] = 744, + [745] = 724, + [746] = 746, + [747] = 747, [748] = 748, - [749] = 749, + [749] = 572, [750] = 750, [751] = 751, [752] = 752, - [753] = 750, + [753] = 752, [754] = 754, [755] = 755, - [756] = 756, + [756] = 750, [757] = 757, - [758] = 758, + [758] = 752, [759] = 759, [760] = 760, - [761] = 756, + [761] = 761, [762] = 762, - [763] = 763, + [763] = 750, [764] = 764, [765] = 765, [766] = 766, [767] = 767, - [768] = 756, - [769] = 588, + [768] = 768, + [769] = 769, [770] = 770, [771] = 771, [772] = 772, - [773] = 750, + [773] = 773, [774] = 774, - [775] = 775, + [775] = 715, [776] = 776, [777] = 777, [778] = 778, - [779] = 720, + [779] = 779, [780] = 780, [781] = 781, - [782] = 782, - [783] = 783, + [782] = 781, + [783] = 133, [784] = 784, [785] = 785, - [786] = 123, - [787] = 721, - [788] = 788, - [789] = 719, - [790] = 790, - [791] = 791, + [786] = 786, + [787] = 787, + [788] = 716, + [789] = 789, + [790] = 717, + [791] = 781, [792] = 792, [793] = 793, [794] = 794, - [795] = 795, + [795] = 764, [796] = 796, [797] = 797, - [798] = 798, - [799] = 588, + [798] = 150, + [799] = 799, [800] = 800, [801] = 801, - [802] = 153, - [803] = 803, - [804] = 804, - [805] = 765, + [802] = 802, + [803] = 754, + [804] = 772, + [805] = 805, [806] = 806, - [807] = 807, + [807] = 766, [808] = 808, - [809] = 757, - [810] = 810, + [809] = 809, + [810] = 751, [811] = 811, [812] = 812, [813] = 813, - [814] = 766, - [815] = 755, - [816] = 776, - [817] = 758, + [814] = 814, + [815] = 815, + [816] = 767, + [817] = 817, [818] = 818, [819] = 819, - [820] = 752, + [820] = 820, [821] = 821, [822] = 822, - [823] = 823, - [824] = 824, + [823] = 755, + [824] = 759, [825] = 825, [826] = 826, - [827] = 827, + [827] = 572, [828] = 828, - [829] = 770, + [829] = 829, [830] = 830, [831] = 831, - [832] = 832, - [833] = 782, + [832] = 572, + [833] = 833, [834] = 834, [835] = 835, [836] = 836, - [837] = 831, - [838] = 834, - [839] = 839, - [840] = 840, - [841] = 835, - [842] = 836, - [843] = 835, - [844] = 836, - [845] = 845, - [846] = 846, + [837] = 837, + [838] = 779, + [839] = 837, + [840] = 830, + [841] = 834, + [842] = 829, + [843] = 843, + [844] = 844, + [845] = 831, + [846] = 836, [847] = 847, - [848] = 832, - [849] = 845, - [850] = 588, - [851] = 846, - [852] = 831, - [853] = 832, - [854] = 836, - [855] = 855, - [856] = 836, - [857] = 857, + [848] = 848, + [849] = 836, + [850] = 850, + [851] = 851, + [852] = 848, + [853] = 848, + [854] = 843, + [855] = 572, + [856] = 829, + [857] = 836, [858] = 858, - [859] = 588, - [860] = 839, - [861] = 861, - [862] = 857, - [863] = 830, - [864] = 855, - [865] = 830, + [859] = 830, + [860] = 850, + [861] = 844, + [862] = 834, + [863] = 843, + [864] = 844, + [865] = 831, [866] = 866, [867] = 867, [868] = 868, - [869] = 845, - [870] = 861, - [871] = 857, - [872] = 846, - [873] = 855, + [869] = 850, + [870] = 847, + [871] = 871, + [872] = 872, + [873] = 873, [874] = 874, - [875] = 861, + [875] = 875, [876] = 876, [877] = 877, [878] = 878, @@ -2463,111 +2463,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [880] = 880, [881] = 881, [882] = 882, - [883] = 821, + [883] = 872, [884] = 884, - [885] = 882, + [885] = 885, [886] = 886, - [887] = 123, + [887] = 887, [888] = 888, - [889] = 822, - [890] = 890, - [891] = 884, + [889] = 799, + [890] = 873, + [891] = 874, [892] = 892, - [893] = 893, + [893] = 875, [894] = 894, - [895] = 788, - [896] = 886, - [897] = 897, - [898] = 123, - [899] = 804, - [900] = 813, - [901] = 780, + [895] = 880, + [896] = 896, + [897] = 871, + [898] = 898, + [899] = 888, + [900] = 876, + [901] = 894, [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] = 877, - [920] = 878, - [921] = 879, - [922] = 880, - [923] = 881, - [924] = 882, + [903] = 898, + [904] = 904, + [905] = 877, + [906] = 878, + [907] = 907, + [908] = 872, + [909] = 873, + [910] = 874, + [911] = 875, + [912] = 876, + [913] = 877, + [914] = 878, + [915] = 879, + [916] = 879, + [917] = 917, + [918] = 881, + [919] = 814, + [920] = 882, + [921] = 809, + [922] = 922, + [923] = 884, + [924] = 885, [925] = 925, - [926] = 884, + [926] = 881, [927] = 927, - [928] = 886, + [928] = 133, [929] = 929, - [930] = 930, - [931] = 888, - [932] = 932, + [930] = 133, + [931] = 931, + [932] = 927, [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, + [934] = 812, + [935] = 892, + [936] = 936, + [937] = 572, + [938] = 925, + [939] = 931, + [940] = 936, + [941] = 825, + [942] = 778, + [943] = 802, + [944] = 907, + [945] = 917, + [946] = 946, + [947] = 947, [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, + [949] = 929, + [950] = 904, + [951] = 946, + [952] = 947, + [953] = 922, + [954] = 931, + [955] = 882, + [956] = 880, + [957] = 896, + [958] = 925, + [959] = 896, + [960] = 936, [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, + [962] = 871, + [963] = 884, + [964] = 888, + [965] = 789, + [966] = 894, + [967] = 907, + [968] = 917, + [969] = 885, + [970] = 946, + [971] = 947, + [972] = 898, + [973] = 933, + [974] = 929, + [975] = 904, + [976] = 797, + [977] = 922, + [978] = 902, + [979] = 779, + [980] = 902, + [981] = 927, + [982] = 828, + [983] = 150, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, [988] = 988, [989] = 989, [990] = 990, @@ -2580,108 +2580,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [997] = 997, [998] = 998, [999] = 999, - [1000] = 994, + [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 1003, + [1003] = 150, [1004] = 1004, - [1005] = 997, - [1006] = 1001, - [1007] = 1007, + [1005] = 1005, + [1006] = 1006, + [1007] = 991, [1008] = 1008, [1009] = 1009, - [1010] = 1010, - [1011] = 994, - [1012] = 991, - [1013] = 1013, + [1010] = 1002, + [1011] = 1011, + [1012] = 1004, + [1013] = 990, [1014] = 1014, - [1015] = 1015, - [1016] = 992, - [1017] = 995, + [1015] = 985, + [1016] = 1016, + [1017] = 1017, [1018] = 1018, - [1019] = 1003, + [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 1004, - [1023] = 997, - [1024] = 998, + [1022] = 1022, + [1023] = 993, + [1024] = 1006, [1025] = 1025, - [1026] = 1018, - [1027] = 999, - [1028] = 1028, - [1029] = 999, - [1030] = 1030, - [1031] = 996, + [1026] = 1026, + [1027] = 1027, + [1028] = 1025, + [1029] = 1009, + [1030] = 1017, + [1031] = 1025, [1032] = 1032, - [1033] = 1033, + [1033] = 994, [1034] = 1034, [1035] = 1035, - [1036] = 989, - [1037] = 1037, - [1038] = 1002, - [1039] = 1039, - [1040] = 1001, - [1041] = 1002, - [1042] = 1039, - [1043] = 153, - [1044] = 1044, - [1045] = 988, - [1046] = 1046, - [1047] = 1034, - [1048] = 1033, - [1049] = 1049, - [1050] = 1050, + [1036] = 1036, + [1037] = 1020, + [1038] = 1006, + [1039] = 1017, + [1040] = 1040, + [1041] = 1009, + [1042] = 995, + [1043] = 999, + [1044] = 1032, + [1045] = 1045, + [1046] = 991, + [1047] = 190, + [1048] = 992, + [1049] = 993, + [1050] = 994, [1051] = 1051, - [1052] = 1035, - [1053] = 1053, - [1054] = 1054, + [1052] = 995, + [1053] = 996, + [1054] = 997, [1055] = 1055, - [1056] = 1032, - [1057] = 265, + [1056] = 1056, + [1057] = 1057, [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, + [1059] = 999, + [1060] = 1001, + [1061] = 1002, + [1062] = 1004, + [1063] = 1063, + [1064] = 996, + [1065] = 1020, + [1066] = 1034, + [1067] = 997, + [1068] = 1068, + [1069] = 1032, + [1070] = 1027, + [1071] = 989, + [1072] = 1019, + [1073] = 1021, + [1074] = 1005, + [1075] = 1051, + [1076] = 1011, + [1077] = 986, + [1078] = 992, + [1079] = 1014, + [1080] = 1027, + [1081] = 989, + [1082] = 1019, + [1083] = 1021, + [1084] = 1005, + [1085] = 1051, + [1086] = 1011, + [1087] = 986, + [1088] = 1057, + [1089] = 1001, + [1090] = 1090, + [1091] = 1057, + [1092] = 985, }; static const TSCharacterRange aux_sym_key_value_value_token1_character_set_1[] = { @@ -3294,15 +3285,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [37] = {.lex_state = 12, .external_lex_state = 2}, + [38] = {.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 = 2}, - [43] = {.lex_state = 12, .external_lex_state = 6}, + [43] = {.lex_state = 12, .external_lex_state = 2}, [44] = {.lex_state = 12, .external_lex_state = 6}, - [45] = {.lex_state = 12, .external_lex_state = 2}, + [45] = {.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}, @@ -3328,8 +3319,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [71] = {.lex_state = 12, .external_lex_state = 2}, + [72] = {.lex_state = 12, .external_lex_state = 6}, [73] = {.lex_state = 12, .external_lex_state = 2}, [74] = {.lex_state = 12, .external_lex_state = 6}, [75] = {.lex_state = 12, .external_lex_state = 2}, @@ -3337,50 +3328,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [80] = {.lex_state = 12, .external_lex_state = 2}, + [81] = {.lex_state = 12, .external_lex_state = 6}, [82] = {.lex_state = 12, .external_lex_state = 6}, - [83] = {.lex_state = 12, .external_lex_state = 6}, - [84] = {.lex_state = 12, .external_lex_state = 2}, + [83] = {.lex_state = 12, .external_lex_state = 2}, + [84] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [90] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [92] = {.lex_state = 12, .external_lex_state = 6}, + [93] = {.lex_state = 12, .external_lex_state = 2}, + [94] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [100] = {.lex_state = 12, .external_lex_state = 6}, + [101] = {.lex_state = 12, .external_lex_state = 2}, + [102] = {.lex_state = 12, .external_lex_state = 6}, + [103] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [107] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [112] = {.lex_state = 12, .external_lex_state = 2}, [113] = {.lex_state = 12, .external_lex_state = 3}, [114] = {.lex_state = 12, .external_lex_state = 3}, [115] = {.lex_state = 12, .external_lex_state = 3}, - [116] = {.lex_state = 12, .external_lex_state = 2}, + [116] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [121] = {.lex_state = 12, .external_lex_state = 2}, [122] = {.lex_state = 12, .external_lex_state = 3}, - [123] = {.lex_state = 12, .external_lex_state = 7}, + [123] = {.lex_state = 12, .external_lex_state = 3}, [124] = {.lex_state = 12, .external_lex_state = 3}, [125] = {.lex_state = 12, .external_lex_state = 3}, [126] = {.lex_state = 12, .external_lex_state = 3}, @@ -3390,94 +3381,94 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [133] = {.lex_state = 12, .external_lex_state = 7}, [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}, + [140] = {.lex_state = 12, .external_lex_state = 6}, [141] = {.lex_state = 12, .external_lex_state = 2}, - [142] = {.lex_state = 12, .external_lex_state = 8}, + [142] = {.lex_state = 12, .external_lex_state = 2}, [143] = {.lex_state = 12, .external_lex_state = 6}, - [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}, + [144] = {.lex_state = 12, .external_lex_state = 2}, + [145] = {.lex_state = 12, .external_lex_state = 8}, + [146] = {.lex_state = 12, .external_lex_state = 9}, + [147] = {.lex_state = 12, .external_lex_state = 10}, + [148] = {.lex_state = 12, .external_lex_state = 11}, + [149] = {.lex_state = 12, .external_lex_state = 6}, + [150] = {.lex_state = 12, .external_lex_state = 9}, + [151] = {.lex_state = 12, .external_lex_state = 2}, [152] = {.lex_state = 12, .external_lex_state = 2}, - [153] = {.lex_state = 12, .external_lex_state = 8}, + [153] = {.lex_state = 12, .external_lex_state = 6}, [154] = {.lex_state = 12, .external_lex_state = 6}, [155] = {.lex_state = 12, .external_lex_state = 6}, - [156] = {.lex_state = 12, .external_lex_state = 6}, + [156] = {.lex_state = 12, .external_lex_state = 2}, [157] = {.lex_state = 12, .external_lex_state = 2}, [158] = {.lex_state = 12, .external_lex_state = 2}, [159] = {.lex_state = 12, .external_lex_state = 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}, + [162] = {.lex_state = 12, .external_lex_state = 6}, + [163] = {.lex_state = 12, .external_lex_state = 6}, + [164] = {.lex_state = 12, .external_lex_state = 9}, [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}, + [171] = {.lex_state = 12, .external_lex_state = 2}, [172] = {.lex_state = 12, .external_lex_state = 2}, [173] = {.lex_state = 12, .external_lex_state = 2}, - [174] = {.lex_state = 12, .external_lex_state = 2}, - [175] = {.lex_state = 12, .external_lex_state = 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}, + [174] = {.lex_state = 12, .external_lex_state = 11}, + [175] = {.lex_state = 12, .external_lex_state = 12}, + [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 = 11}, + [183] = {.lex_state = 12, .external_lex_state = 11}, + [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 = 11}, + [190] = {.lex_state = 12, .external_lex_state = 3}, + [191] = {.lex_state = 12, .external_lex_state = 12}, + [192] = {.lex_state = 12, .external_lex_state = 5}, + [193] = {.lex_state = 12, .external_lex_state = 13}, [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}, + [195] = {.lex_state = 12, .external_lex_state = 3}, + [196] = {.lex_state = 12, .external_lex_state = 3}, + [197] = {.lex_state = 12, .external_lex_state = 12}, + [198] = {.lex_state = 12, .external_lex_state = 11}, [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}, + [201] = {.lex_state = 12, .external_lex_state = 4}, + [202] = {.lex_state = 12, .external_lex_state = 6}, [203] = {.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}, + [204] = {.lex_state = 12, .external_lex_state = 4}, + [205] = {.lex_state = 12, .external_lex_state = 4}, + [206] = {.lex_state = 12, .external_lex_state = 4}, + [207] = {.lex_state = 12, .external_lex_state = 4}, + [208] = {.lex_state = 12, .external_lex_state = 4}, + [209] = {.lex_state = 12, .external_lex_state = 2}, [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 = 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}, + [213] = {.lex_state = 12, .external_lex_state = 5}, + [214] = {.lex_state = 12, .external_lex_state = 5}, + [215] = {.lex_state = 12, .external_lex_state = 5}, + [216] = {.lex_state = 12, .external_lex_state = 5}, [217] = {.lex_state = 12, .external_lex_state = 3}, [218] = {.lex_state = 12, .external_lex_state = 3}, [219] = {.lex_state = 12, .external_lex_state = 3}, - [220] = {.lex_state = 12, .external_lex_state = 3}, + [220] = {.lex_state = 12, .external_lex_state = 4}, [221] = {.lex_state = 12, .external_lex_state = 3}, [222] = {.lex_state = 12, .external_lex_state = 3}, [223] = {.lex_state = 12, .external_lex_state = 3}, @@ -3486,17 +3477,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [226] = {.lex_state = 12, .external_lex_state = 3}, [227] = {.lex_state = 12, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, - [229] = {.lex_state = 12, .external_lex_state = 3}, + [229] = {.lex_state = 12, .external_lex_state = 5}, [230] = {.lex_state = 12, .external_lex_state = 3}, - [231] = {.lex_state = 12, .external_lex_state = 3}, + [231] = {.lex_state = 12, .external_lex_state = 4}, [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 = 3}, - [236] = {.lex_state = 12, .external_lex_state = 4}, + [235] = {.lex_state = 12, .external_lex_state = 5}, + [236] = {.lex_state = 12, .external_lex_state = 3}, [237] = {.lex_state = 12, .external_lex_state = 3}, [238] = {.lex_state = 12, .external_lex_state = 3}, - [239] = {.lex_state = 12, .external_lex_state = 6}, + [239] = {.lex_state = 12, .external_lex_state = 5}, [240] = {.lex_state = 12, .external_lex_state = 3}, [241] = {.lex_state = 12, .external_lex_state = 3}, [242] = {.lex_state = 12, .external_lex_state = 3}, @@ -3507,8 +3498,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, + [250] = {.lex_state = 12, .external_lex_state = 5}, + [251] = {.lex_state = 12, .external_lex_state = 3}, [252] = {.lex_state = 12, .external_lex_state = 3}, [253] = {.lex_state = 12, .external_lex_state = 3}, [254] = {.lex_state = 12, .external_lex_state = 3}, @@ -3520,62 +3511,62 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 12, .external_lex_state = 3}, [261] = {.lex_state = 12, .external_lex_state = 3}, [262] = {.lex_state = 12, .external_lex_state = 3}, - [263] = {.lex_state = 12, .external_lex_state = 5}, + [263] = {.lex_state = 12, .external_lex_state = 3}, [264] = {.lex_state = 12, .external_lex_state = 3}, [265] = {.lex_state = 12, .external_lex_state = 3}, [266] = {.lex_state = 12, .external_lex_state = 3}, - [267] = {.lex_state = 12, .external_lex_state = 4}, - [268] = {.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 = 5}, - [273] = {.lex_state = 12, .external_lex_state = 4}, + [267] = {.lex_state = 12, .external_lex_state = 3}, + [268] = {.lex_state = 12, .external_lex_state = 3}, + [269] = {.lex_state = 12, .external_lex_state = 3}, + [270] = {.lex_state = 12, .external_lex_state = 6}, + [271] = {.lex_state = 12, .external_lex_state = 5}, + [272] = {.lex_state = 12, .external_lex_state = 3}, + [273] = {.lex_state = 12, .external_lex_state = 3}, [274] = {.lex_state = 12, .external_lex_state = 3}, [275] = {.lex_state = 12, .external_lex_state = 3}, [276] = {.lex_state = 12, .external_lex_state = 3}, - [277] = {.lex_state = 12, .external_lex_state = 5}, - [278] = {.lex_state = 12, .external_lex_state = 5}, - [279] = {.lex_state = 12, .external_lex_state = 3}, - [280] = {.lex_state = 12, .external_lex_state = 5}, - [281] = {.lex_state = 12, .external_lex_state = 4}, + [277] = {.lex_state = 12, .external_lex_state = 4}, + [278] = {.lex_state = 12, .external_lex_state = 4}, + [279] = {.lex_state = 12, .external_lex_state = 4}, + [280] = {.lex_state = 12, .external_lex_state = 3}, + [281] = {.lex_state = 12, .external_lex_state = 2}, [282] = {.lex_state = 12, .external_lex_state = 5}, - [283] = {.lex_state = 12, .external_lex_state = 3}, + [283] = {.lex_state = 12, .external_lex_state = 5}, [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 = 3}, + [285] = {.lex_state = 12, .external_lex_state = 5}, + [286] = {.lex_state = 12, .external_lex_state = 4}, + [287] = {.lex_state = 12, .external_lex_state = 5}, + [288] = {.lex_state = 12, .external_lex_state = 5}, [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}, + [292] = {.lex_state = 12, .external_lex_state = 3}, + [293] = {.lex_state = 12, .external_lex_state = 3}, [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}, + [295] = {.lex_state = 12, .external_lex_state = 3}, + [296] = {.lex_state = 12, .external_lex_state = 3}, + [297] = {.lex_state = 12, .external_lex_state = 4}, + [298] = {.lex_state = 12, .external_lex_state = 2}, [299] = {.lex_state = 12, .external_lex_state = 3}, - [300] = {.lex_state = 12, .external_lex_state = 3}, + [300] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [304] = {.lex_state = 12, .external_lex_state = 4}, [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}, + [306] = {.lex_state = 12, .external_lex_state = 4}, + [307] = {.lex_state = 12, .external_lex_state = 5}, + [308] = {.lex_state = 12, .external_lex_state = 3}, + [309] = {.lex_state = 12, .external_lex_state = 5}, [310] = {.lex_state = 12, .external_lex_state = 3}, - [311] = {.lex_state = 12, .external_lex_state = 3}, - [312] = {.lex_state = 12, .external_lex_state = 5}, + [311] = {.lex_state = 12, .external_lex_state = 6}, + [312] = {.lex_state = 12, .external_lex_state = 3}, [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}, + [315] = {.lex_state = 12, .external_lex_state = 3}, + [316] = {.lex_state = 12, .external_lex_state = 3}, [317] = {.lex_state = 12, .external_lex_state = 3}, - [318] = {.lex_state = 12, .external_lex_state = 2}, + [318] = {.lex_state = 12, .external_lex_state = 4}, [319] = {.lex_state = 12, .external_lex_state = 2}, [320] = {.lex_state = 12, .external_lex_state = 2}, [321] = {.lex_state = 12, .external_lex_state = 2}, @@ -3601,16 +3592,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [344] = {.lex_state = 12, .external_lex_state = 6}, [345] = {.lex_state = 12, .external_lex_state = 6}, - [346] = {.lex_state = 12, .external_lex_state = 6}, + [346] = {.lex_state = 12, .external_lex_state = 2}, [347] = {.lex_state = 12, .external_lex_state = 2}, - [348] = {.lex_state = 12, .external_lex_state = 2}, + [348] = {.lex_state = 12, .external_lex_state = 6}, [349] = {.lex_state = 12, .external_lex_state = 6}, - [350] = {.lex_state = 12, .external_lex_state = 6}, + [350] = {.lex_state = 12, .external_lex_state = 2}, [351] = {.lex_state = 12, .external_lex_state = 2}, [352] = {.lex_state = 12, .external_lex_state = 6}, - [353] = {.lex_state = 12, .external_lex_state = 2}, + [353] = {.lex_state = 12, .external_lex_state = 6}, [354] = {.lex_state = 12, .external_lex_state = 6}, [355] = {.lex_state = 12, .external_lex_state = 6}, [356] = {.lex_state = 12, .external_lex_state = 6}, @@ -3622,13 +3613,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [362] = {.lex_state = 12, .external_lex_state = 6}, [363] = {.lex_state = 12, .external_lex_state = 6}, [364] = {.lex_state = 12, .external_lex_state = 6}, - [365] = {.lex_state = 12, .external_lex_state = 6}, + [365] = {.lex_state = 12, .external_lex_state = 2}, [366] = {.lex_state = 12, .external_lex_state = 6}, - [367] = {.lex_state = 12, .external_lex_state = 6}, - [368] = {.lex_state = 12, .external_lex_state = 2}, + [367] = {.lex_state = 12, .external_lex_state = 2}, + [368] = {.lex_state = 12, .external_lex_state = 6}, [369] = {.lex_state = 12, .external_lex_state = 2}, [370] = {.lex_state = 12, .external_lex_state = 6}, - [371] = {.lex_state = 12, .external_lex_state = 2}, + [371] = {.lex_state = 12, .external_lex_state = 6}, [372] = {.lex_state = 12, .external_lex_state = 6}, [373] = {.lex_state = 12, .external_lex_state = 6}, [374] = {.lex_state = 12, .external_lex_state = 6}, @@ -3641,15 +3632,15 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [381] = {.lex_state = 12, .external_lex_state = 6}, [382] = {.lex_state = 12, .external_lex_state = 6}, [383] = {.lex_state = 12, .external_lex_state = 6}, - [384] = {.lex_state = 12, .external_lex_state = 6}, - [385] = {.lex_state = 12, .external_lex_state = 6}, + [384] = {.lex_state = 12, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 2}, [386] = {.lex_state = 12, .external_lex_state = 2}, [387] = {.lex_state = 12, .external_lex_state = 2}, - [388] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 6}, [389] = {.lex_state = 12, .external_lex_state = 6}, [390] = {.lex_state = 12, .external_lex_state = 6}, - [391] = {.lex_state = 12, .external_lex_state = 2}, - [392] = {.lex_state = 12, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 4}, + [392] = {.lex_state = 12, .external_lex_state = 4}, [393] = {.lex_state = 12, .external_lex_state = 6}, [394] = {.lex_state = 12, .external_lex_state = 6}, [395] = {.lex_state = 12, .external_lex_state = 6}, @@ -3658,18 +3649,18 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [398] = {.lex_state = 12, .external_lex_state = 6}, [399] = {.lex_state = 12, .external_lex_state = 6}, [400] = {.lex_state = 12, .external_lex_state = 6}, - [401] = {.lex_state = 12, .external_lex_state = 6}, - [402] = {.lex_state = 12, .external_lex_state = 6}, + [401] = {.lex_state = 12, .external_lex_state = 2}, + [402] = {.lex_state = 12, .external_lex_state = 2}, [403] = {.lex_state = 12, .external_lex_state = 6}, - [404] = {.lex_state = 12, .external_lex_state = 2}, + [404] = {.lex_state = 12, .external_lex_state = 6}, [405] = {.lex_state = 12, .external_lex_state = 6}, - [406] = {.lex_state = 12, .external_lex_state = 6}, - [407] = {.lex_state = 12, .external_lex_state = 4}, + [406] = {.lex_state = 12, .external_lex_state = 4}, + [407] = {.lex_state = 12, .external_lex_state = 6}, [408] = {.lex_state = 12, .external_lex_state = 6}, - [409] = {.lex_state = 12, .external_lex_state = 6}, + [409] = {.lex_state = 12, .external_lex_state = 4}, [410] = {.lex_state = 12, .external_lex_state = 6}, [411] = {.lex_state = 12, .external_lex_state = 6}, - [412] = {.lex_state = 12, .external_lex_state = 4}, + [412] = {.lex_state = 12, .external_lex_state = 6}, [413] = {.lex_state = 12, .external_lex_state = 6}, [414] = {.lex_state = 12, .external_lex_state = 6}, [415] = {.lex_state = 12, .external_lex_state = 6}, @@ -3691,12 +3682,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [434] = {.lex_state = 12, .external_lex_state = 4}, + [435] = {.lex_state = 12, .external_lex_state = 2}, + [436] = {.lex_state = 12, .external_lex_state = 2}, + [437] = {.lex_state = 12, .external_lex_state = 2}, + [438] = {.lex_state = 12, .external_lex_state = 2}, + [439] = {.lex_state = 12, .external_lex_state = 2}, [440] = {.lex_state = 12, .external_lex_state = 2}, [441] = {.lex_state = 12, .external_lex_state = 2}, [442] = {.lex_state = 12, .external_lex_state = 2}, @@ -3717,41 +3708,41 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [460] = {.lex_state = 12, .external_lex_state = 6}, [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}, + [466] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [470] = {.lex_state = 12, .external_lex_state = 2}, [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}, + [472] = {.lex_state = 12, .external_lex_state = 6}, + [473] = {.lex_state = 2, .external_lex_state = 14}, + [474] = {.lex_state = 1, .external_lex_state = 15}, + [475] = {.lex_state = 2, .external_lex_state = 14}, + [476] = {.lex_state = 2, .external_lex_state = 14}, + [477] = {.lex_state = 2, .external_lex_state = 14}, + [478] = {.lex_state = 2, .external_lex_state = 14}, [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}, + [480] = {.lex_state = 2, .external_lex_state = 14}, + [481] = {.lex_state = 2, .external_lex_state = 16}, + [482] = {.lex_state = 2, .external_lex_state = 16}, + [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}, + [487] = {.lex_state = 2, .external_lex_state = 14}, [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}, + [492] = {.lex_state = 2, .external_lex_state = 14}, + [493] = {.lex_state = 12, .external_lex_state = 15}, + [494] = {.lex_state = 12, .external_lex_state = 15}, [495] = {.lex_state = 12, .external_lex_state = 15}, [496] = {.lex_state = 12, .external_lex_state = 15}, [497] = {.lex_state = 12, .external_lex_state = 15}, @@ -3764,340 +3755,340 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [507] = {.lex_state = 2, .external_lex_state = 17}, + [508] = {.lex_state = 2, .external_lex_state = 17}, + [509] = {.lex_state = 2, .external_lex_state = 14}, + [510] = {.lex_state = 2, .external_lex_state = 14}, + [511] = {.lex_state = 2, .external_lex_state = 17}, + [512] = {.lex_state = 12, .external_lex_state = 18}, [513] = {.lex_state = 2, .external_lex_state = 17}, [514] = {.lex_state = 12, .external_lex_state = 18}, - [515] = {.lex_state = 2, .external_lex_state = 14}, + [515] = {.lex_state = 12, .external_lex_state = 19}, [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 = 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 = 18}, - [528] = {.lex_state = 12, .external_lex_state = 19}, + [518] = {.lex_state = 2, .external_lex_state = 14}, + [519] = {.lex_state = 12, .external_lex_state = 19}, + [520] = {.lex_state = 12, .external_lex_state = 18}, + [521] = {.lex_state = 12, .external_lex_state = 19}, + [522] = {.lex_state = 12, .external_lex_state = 19}, + [523] = {.lex_state = 2, .external_lex_state = 17}, + [524] = {.lex_state = 12, .external_lex_state = 18}, + [525] = {.lex_state = 12, .external_lex_state = 19}, + [526] = {.lex_state = 12, .external_lex_state = 18}, + [527] = {.lex_state = 12, .external_lex_state = 19}, + [528] = {.lex_state = 12, .external_lex_state = 18}, [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}, + [534] = {.lex_state = 2, .external_lex_state = 16}, + [535] = {.lex_state = 2, .external_lex_state = 17}, + [536] = {.lex_state = 12, .external_lex_state = 18}, + [537] = {.lex_state = 12, .external_lex_state = 18}, + [538] = {.lex_state = 12, .external_lex_state = 19}, + [539] = {.lex_state = 2, .external_lex_state = 17}, [540] = {.lex_state = 2, .external_lex_state = 16}, - [541] = {.lex_state = 2, .external_lex_state = 17}, + [541] = {.lex_state = 2, .external_lex_state = 16}, [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 = 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}, + [543] = {.lex_state = 2, .external_lex_state = 17}, + [544] = {.lex_state = 2, .external_lex_state = 17}, + [545] = {.lex_state = 12, .external_lex_state = 19}, + [546] = {.lex_state = 2, .external_lex_state = 16}, + [547] = {.lex_state = 12, .external_lex_state = 20}, + [548] = {.lex_state = 2, .external_lex_state = 21}, + [549] = {.lex_state = 2, .external_lex_state = 17}, + [550] = {.lex_state = 2, .external_lex_state = 16}, + [551] = {.lex_state = 12, .external_lex_state = 22}, [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}, + [554] = {.lex_state = 12, .external_lex_state = 22}, + [555] = {.lex_state = 12, .external_lex_state = 22}, [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}, + [557] = {.lex_state = 12, .external_lex_state = 22}, + [558] = {.lex_state = 12, .external_lex_state = 22}, + [559] = {.lex_state = 12, .external_lex_state = 22}, + [560] = {.lex_state = 2, .external_lex_state = 17}, [561] = {.lex_state = 12, .external_lex_state = 20}, - [562] = {.lex_state = 12, .external_lex_state = 20}, - [563] = {.lex_state = 2, .external_lex_state = 22}, + [562] = {.lex_state = 2, .external_lex_state = 16}, + [563] = {.lex_state = 12, .external_lex_state = 22}, [564] = {.lex_state = 2, .external_lex_state = 16}, - [565] = {.lex_state = 12, .external_lex_state = 21}, - [566] = {.lex_state = 2, .external_lex_state = 17}, + [565] = {.lex_state = 2, .external_lex_state = 17}, + [566] = {.lex_state = 12, .external_lex_state = 20}, [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 = 2, .external_lex_state = 17}, + [568] = {.lex_state = 2, .external_lex_state = 16}, + [569] = {.lex_state = 2, .external_lex_state = 16}, + [570] = {.lex_state = 2, .external_lex_state = 16}, + [571] = {.lex_state = 12, .external_lex_state = 20}, + [572] = {.lex_state = 2, .external_lex_state = 14}, [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}, + [574] = {.lex_state = 12, .external_lex_state = 20}, + [575] = {.lex_state = 2, .external_lex_state = 14}, + [576] = {.lex_state = 2, .external_lex_state = 14}, + [577] = {.lex_state = 2, .external_lex_state = 14}, [578] = {.lex_state = 2, .external_lex_state = 14}, [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}, + [580] = {.lex_state = 2, .external_lex_state = 16}, + [581] = {.lex_state = 2, .external_lex_state = 14}, + [582] = {.lex_state = 2, .external_lex_state = 16}, [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}, + [585] = {.lex_state = 12, .external_lex_state = 18}, + [586] = {.lex_state = 12, .external_lex_state = 19}, [587] = {.lex_state = 12, .external_lex_state = 23}, - [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}, + [588] = {.lex_state = 12, .external_lex_state = 19}, + [589] = {.lex_state = 2, .external_lex_state = 14}, + [590] = {.lex_state = 12, .external_lex_state = 23}, + [591] = {.lex_state = 12, .external_lex_state = 23}, + [592] = {.lex_state = 12, .external_lex_state = 20}, + [593] = {.lex_state = 12, .external_lex_state = 20}, [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}, + [595] = {.lex_state = 12, .external_lex_state = 20}, + [596] = {.lex_state = 12, .external_lex_state = 20}, + [597] = {.lex_state = 12, .external_lex_state = 18}, [598] = {.lex_state = 2, .external_lex_state = 14}, - [599] = {.lex_state = 12, .external_lex_state = 24}, + [599] = {.lex_state = 2, .external_lex_state = 14}, [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 = 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}, + [601] = {.lex_state = 12, .external_lex_state = 20}, + [602] = {.lex_state = 12, .external_lex_state = 15}, + [603] = {.lex_state = 12, .external_lex_state = 24}, + [604] = {.lex_state = 2, .external_lex_state = 17}, + [605] = {.lex_state = 12, .external_lex_state = 24}, + [606] = {.lex_state = 12, .external_lex_state = 25}, + [607] = {.lex_state = 2, .external_lex_state = 17}, + [608] = {.lex_state = 12, .external_lex_state = 22}, + [609] = {.lex_state = 12, .external_lex_state = 22}, + [610] = {.lex_state = 2, .external_lex_state = 17}, + [611] = {.lex_state = 2, .external_lex_state = 17}, + [612] = {.lex_state = 12, .external_lex_state = 24}, + [613] = {.lex_state = 12, .external_lex_state = 24}, + [614] = {.lex_state = 2, .external_lex_state = 17}, + [615] = {.lex_state = 12, .external_lex_state = 26}, [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 = 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}, + [617] = {.lex_state = 12, .external_lex_state = 24}, + [618] = {.lex_state = 2, .external_lex_state = 17}, + [619] = {.lex_state = 12, .external_lex_state = 18}, + [620] = {.lex_state = 2, .external_lex_state = 16}, + [621] = {.lex_state = 2, .external_lex_state = 16}, + [622] = {.lex_state = 2, .external_lex_state = 17}, + [623] = {.lex_state = 3, .external_lex_state = 27}, + [624] = {.lex_state = 4, .external_lex_state = 27}, + [625] = {.lex_state = 4, .external_lex_state = 27}, + [626] = {.lex_state = 2, .external_lex_state = 17}, + [627] = {.lex_state = 2, .external_lex_state = 16}, + [628] = {.lex_state = 12, .external_lex_state = 19}, + [629] = {.lex_state = 2, .external_lex_state = 16}, + [630] = {.lex_state = 12, .external_lex_state = 18}, + [631] = {.lex_state = 2, .external_lex_state = 16}, + [632] = {.lex_state = 12, .external_lex_state = 18}, + [633] = {.lex_state = 4, .external_lex_state = 27}, + [634] = {.lex_state = 3, .external_lex_state = 27}, [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}, + [636] = {.lex_state = 12, .external_lex_state = 28}, + [637] = {.lex_state = 12, .external_lex_state = 20}, + [638] = {.lex_state = 12, .external_lex_state = 29}, + [639] = {.lex_state = 2, .external_lex_state = 17}, + [640] = {.lex_state = 2, .external_lex_state = 16}, + [641] = {.lex_state = 12, .external_lex_state = 15}, + [642] = {.lex_state = 12, .external_lex_state = 19}, + [643] = {.lex_state = 12, .external_lex_state = 20}, + [644] = {.lex_state = 12, .external_lex_state = 15}, + [645] = {.lex_state = 3, .external_lex_state = 27}, + [646] = {.lex_state = 12, .external_lex_state = 24}, + [647] = {.lex_state = 12, .external_lex_state = 24}, + [648] = {.lex_state = 12, .external_lex_state = 22}, + [649] = {.lex_state = 12, .external_lex_state = 20}, + [650] = {.lex_state = 12, .external_lex_state = 20}, + [651] = {.lex_state = 12, .external_lex_state = 22}, + [652] = {.lex_state = 12, .external_lex_state = 22}, [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 = 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}, + [654] = {.lex_state = 12, .external_lex_state = 30}, + [655] = {.lex_state = 12, .external_lex_state = 30}, + [656] = {.lex_state = 12, .external_lex_state = 31}, + [657] = {.lex_state = 12, .external_lex_state = 30}, + [658] = {.lex_state = 12, .external_lex_state = 31}, + [659] = {.lex_state = 12, .external_lex_state = 31}, + [660] = {.lex_state = 12, .external_lex_state = 30}, + [661] = {.lex_state = 12, .external_lex_state = 31}, + [662] = {.lex_state = 12, .external_lex_state = 30}, + [663] = {.lex_state = 4, .external_lex_state = 32}, + [664] = {.lex_state = 12, .external_lex_state = 30}, + [665] = {.lex_state = 12, .external_lex_state = 30}, + [666] = {.lex_state = 12, .external_lex_state = 15}, + [667] = {.lex_state = 3, .external_lex_state = 32}, + [668] = {.lex_state = 12, .external_lex_state = 31}, [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}, + [670] = {.lex_state = 12, .external_lex_state = 31}, + [671] = {.lex_state = 12, .external_lex_state = 33}, + [672] = {.lex_state = 3, .external_lex_state = 27}, + [673] = {.lex_state = 4, .external_lex_state = 27}, + [674] = {.lex_state = 12, .external_lex_state = 33}, + [675] = {.lex_state = 12, .external_lex_state = 23}, + [676] = {.lex_state = 3, .external_lex_state = 27}, + [677] = {.lex_state = 12, .external_lex_state = 33}, + [678] = {.lex_state = 4, .external_lex_state = 27}, + [679] = {.lex_state = 12, .external_lex_state = 31}, + [680] = {.lex_state = 12, .external_lex_state = 31}, + [681] = {.lex_state = 12, .external_lex_state = 33}, + [682] = {.lex_state = 12, .external_lex_state = 30}, + [683] = {.lex_state = 12, .external_lex_state = 30}, + [684] = {.lex_state = 0, .external_lex_state = 34}, + [685] = {.lex_state = 0, .external_lex_state = 34}, + [686] = {.lex_state = 0, .external_lex_state = 34}, + [687] = {.lex_state = 0, .external_lex_state = 34}, + [688] = {.lex_state = 0, .external_lex_state = 34}, + [689] = {.lex_state = 6}, + [690] = {.lex_state = 8, .external_lex_state = 35}, + [691] = {.lex_state = 8, .external_lex_state = 35}, + [692] = {.lex_state = 8, .external_lex_state = 35}, + [693] = {.lex_state = 8, .external_lex_state = 35}, + [694] = {.lex_state = 8, .external_lex_state = 35}, + [695] = {.lex_state = 8, .external_lex_state = 35}, + [696] = {.lex_state = 6}, + [697] = {.lex_state = 0, .external_lex_state = 36}, + [698] = {.lex_state = 0, .external_lex_state = 36}, + [699] = {.lex_state = 0, .external_lex_state = 36}, + [700] = {.lex_state = 0, .external_lex_state = 36}, + [701] = {.lex_state = 8, .external_lex_state = 35}, + [702] = {.lex_state = 6}, + [703] = {.lex_state = 0}, [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 = 12, .external_lex_state = 34}, - [724] = {.lex_state = 12, .external_lex_state = 34}, - [725] = {.lex_state = 0, .external_lex_state = 35}, - [726] = {.lex_state = 12, .external_lex_state = 34}, + [705] = {.lex_state = 8, .external_lex_state = 35}, + [706] = {.lex_state = 8, .external_lex_state = 35}, + [707] = {.lex_state = 7, .external_lex_state = 37}, + [708] = {.lex_state = 8, .external_lex_state = 35}, + [709] = {.lex_state = 0}, + [710] = {.lex_state = 7, .external_lex_state = 37}, + [711] = {.lex_state = 8, .external_lex_state = 35}, + [712] = {.lex_state = 8, .external_lex_state = 35}, + [713] = {.lex_state = 0}, + [714] = {.lex_state = 7, .external_lex_state = 37}, + [715] = {.lex_state = 0, .external_lex_state = 36}, + [716] = {.lex_state = 0, .external_lex_state = 36}, + [717] = {.lex_state = 0, .external_lex_state = 36}, + [718] = {.lex_state = 12, .external_lex_state = 35}, + [719] = {.lex_state = 12, .external_lex_state = 35}, + [720] = {.lex_state = 0, .external_lex_state = 36}, + [721] = {.lex_state = 12, .external_lex_state = 35}, + [722] = {.lex_state = 12, .external_lex_state = 35}, + [723] = {.lex_state = 12, .external_lex_state = 35}, + [724] = {.lex_state = 12, .external_lex_state = 35}, + [725] = {.lex_state = 12, .external_lex_state = 35}, + [726] = {.lex_state = 12, .external_lex_state = 35}, [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 = 33}, - [736] = {.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 = 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, .external_lex_state = 35}, - [759] = {.lex_state = 0, .external_lex_state = 35}, - [760] = {.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 = 35}, - [768] = {.lex_state = 0, .external_lex_state = 35}, - [769] = {.lex_state = 0, .external_lex_state = 35}, - [770] = {.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, .external_lex_state = 35}, - [781] = {.lex_state = 6}, - [782] = {.lex_state = 0, .external_lex_state = 35}, - [783] = {.lex_state = 6}, + [728] = {.lex_state = 6}, + [729] = {.lex_state = 0}, + [730] = {.lex_state = 6}, + [731] = {.lex_state = 12, .external_lex_state = 35}, + [732] = {.lex_state = 12, .external_lex_state = 35}, + [733] = {.lex_state = 12, .external_lex_state = 35}, + [734] = {.lex_state = 12, .external_lex_state = 35}, + [735] = {.lex_state = 12, .external_lex_state = 35}, + [736] = {.lex_state = 12, .external_lex_state = 35}, + [737] = {.lex_state = 12, .external_lex_state = 35}, + [738] = {.lex_state = 12, .external_lex_state = 35}, + [739] = {.lex_state = 0, .external_lex_state = 36}, + [740] = {.lex_state = 6}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 12, .external_lex_state = 35}, + [743] = {.lex_state = 0, .external_lex_state = 34}, + [744] = {.lex_state = 0, .external_lex_state = 36}, + [745] = {.lex_state = 12, .external_lex_state = 35}, + [746] = {.lex_state = 5}, + [747] = {.lex_state = 6}, + [748] = {.lex_state = 0, .external_lex_state = 36}, + [749] = {.lex_state = 0, .external_lex_state = 36}, + [750] = {.lex_state = 0, .external_lex_state = 36}, + [751] = {.lex_state = 0, .external_lex_state = 36}, + [752] = {.lex_state = 0, .external_lex_state = 36}, + [753] = {.lex_state = 0, .external_lex_state = 36}, + [754] = {.lex_state = 0, .external_lex_state = 36}, + [755] = {.lex_state = 0, .external_lex_state = 36}, + [756] = {.lex_state = 0, .external_lex_state = 36}, + [757] = {.lex_state = 0, .external_lex_state = 36}, + [758] = {.lex_state = 0, .external_lex_state = 36}, + [759] = {.lex_state = 0, .external_lex_state = 36}, + [760] = {.lex_state = 5}, + [761] = {.lex_state = 6}, + [762] = {.lex_state = 0, .external_lex_state = 36}, + [763] = {.lex_state = 0, .external_lex_state = 36}, + [764] = {.lex_state = 0, .external_lex_state = 36}, + [765] = {.lex_state = 0, .external_lex_state = 36}, + [766] = {.lex_state = 0, .external_lex_state = 36}, + [767] = {.lex_state = 0, .external_lex_state = 36}, + [768] = {.lex_state = 0, .external_lex_state = 36}, + [769] = {.lex_state = 0, .external_lex_state = 36}, + [770] = {.lex_state = 0, .external_lex_state = 36}, + [771] = {.lex_state = 0, .external_lex_state = 36}, + [772] = {.lex_state = 0, .external_lex_state = 36}, + [773] = {.lex_state = 0, .external_lex_state = 36}, + [774] = {.lex_state = 6}, + [775] = {.lex_state = 0}, + [776] = {.lex_state = 6}, + [777] = {.lex_state = 6}, + [778] = {.lex_state = 0, .external_lex_state = 36}, + [779] = {.lex_state = 0, .external_lex_state = 36}, + [780] = {.lex_state = 6}, + [781] = {.lex_state = 0, .external_lex_state = 38}, + [782] = {.lex_state = 0, .external_lex_state = 38}, + [783] = {.lex_state = 0, .external_lex_state = 39}, [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 = 0}, - [790] = {.lex_state = 6}, - [791] = {.lex_state = 6}, + [786] = {.lex_state = 6}, + [787] = {.lex_state = 6}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 0, .external_lex_state = 36}, + [790] = {.lex_state = 0}, + [791] = {.lex_state = 0, .external_lex_state = 38}, [792] = {.lex_state = 6}, - [793] = {.lex_state = 0, .external_lex_state = 35}, - [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 = 7, .external_lex_state = 36}, + [793] = {.lex_state = 0, .external_lex_state = 36}, + [794] = {.lex_state = 12}, + [795] = {.lex_state = 0, .external_lex_state = 35}, + [796] = {.lex_state = 0, .external_lex_state = 36}, + [797] = {.lex_state = 0, .external_lex_state = 36}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 0, .external_lex_state = 36}, [800] = {.lex_state = 6}, - [801] = {.lex_state = 0, .external_lex_state = 35}, - [802] = {.lex_state = 0}, - [803] = {.lex_state = 12}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 0, .external_lex_state = 36}, + [803] = {.lex_state = 0, .external_lex_state = 35}, [804] = {.lex_state = 0, .external_lex_state = 35}, - [805] = {.lex_state = 0, .external_lex_state = 34}, - [806] = {.lex_state = 5}, + [805] = {.lex_state = 0, .external_lex_state = 36}, + [806] = {.lex_state = 0, .external_lex_state = 36}, [807] = {.lex_state = 0, .external_lex_state = 35}, - [808] = {.lex_state = 0, .external_lex_state = 35}, - [809] = {.lex_state = 0, .external_lex_state = 34}, + [808] = {.lex_state = 6}, + [809] = {.lex_state = 0, .external_lex_state = 36}, [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}, + [811] = {.lex_state = 0, .external_lex_state = 36}, + [812] = {.lex_state = 0, .external_lex_state = 36}, + [813] = {.lex_state = 0, .external_lex_state = 36}, + [814] = {.lex_state = 0, .external_lex_state = 36}, + [815] = {.lex_state = 5}, + [816] = {.lex_state = 0, .external_lex_state = 35}, + [817] = {.lex_state = 6}, [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}, + [820] = {.lex_state = 6}, + [821] = {.lex_state = 0, .external_lex_state = 36}, + [822] = {.lex_state = 6}, [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 = 6}, - [829] = {.lex_state = 0, .external_lex_state = 34}, + [825] = {.lex_state = 0, .external_lex_state = 36}, + [826] = {.lex_state = 0}, + [827] = {.lex_state = 7, .external_lex_state = 37}, + [828] = {.lex_state = 0, .external_lex_state = 36}, + [829] = {.lex_state = 0, .external_lex_state = 38}, [830] = {.lex_state = 0, .external_lex_state = 38}, [831] = {.lex_state = 0, .external_lex_state = 38}, - [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}, + [832] = {.lex_state = 8, .external_lex_state = 35}, + [833] = {.lex_state = 0}, + [834] = {.lex_state = 0, .external_lex_state = 38}, + [835] = {.lex_state = 0}, [836] = {.lex_state = 0, .external_lex_state = 38}, - [837] = {.lex_state = 0, .external_lex_state = 38}, - [838] = {.lex_state = 0}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0, .external_lex_state = 35}, [839] = {.lex_state = 0}, - [840] = {.lex_state = 0, .external_lex_state = 35}, + [840] = {.lex_state = 0, .external_lex_state = 38}, [841] = {.lex_state = 0, .external_lex_state = 38}, [842] = {.lex_state = 0, .external_lex_state = 38}, [843] = {.lex_state = 0, .external_lex_state = 38}, @@ -4107,258 +4098,249 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [847] = {.lex_state = 0}, [848] = {.lex_state = 0, .external_lex_state = 38}, [849] = {.lex_state = 0, .external_lex_state = 38}, - [850] = {.lex_state = 8, .external_lex_state = 34}, - [851] = {.lex_state = 0, .external_lex_state = 38}, + [850] = {.lex_state = 0, .external_lex_state = 38}, + [851] = {.lex_state = 0}, [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}, + [855] = {.lex_state = 0}, [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}, + [858] = {.lex_state = 0, .external_lex_state = 36}, + [859] = {.lex_state = 0, .external_lex_state = 38}, + [860] = {.lex_state = 0, .external_lex_state = 38}, [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}, + [867] = {.lex_state = 6}, + [868] = {.lex_state = 12}, [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 = 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 = 39}, - [885] = {.lex_state = 0, .external_lex_state = 34}, - [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 = 40}, - [891] = {.lex_state = 0, .external_lex_state = 39}, - [892] = {.lex_state = 0, .external_lex_state = 34}, - [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 = 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 = 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 = 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 = 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, .external_lex_state = 34}, - [919] = {.lex_state = 0, .external_lex_state = 34}, - [920] = {.lex_state = 0, .external_lex_state = 34}, - [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, .external_lex_state = 39}, - [927] = {.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}, + [870] = {.lex_state = 0}, + [871] = {.lex_state = 0, .external_lex_state = 35}, + [872] = {.lex_state = 0, .external_lex_state = 35}, + [873] = {.lex_state = 0, .external_lex_state = 35}, + [874] = {.lex_state = 0, .external_lex_state = 35}, + [875] = {.lex_state = 0, .external_lex_state = 35}, + [876] = {.lex_state = 0, .external_lex_state = 35}, + [877] = {.lex_state = 0, .external_lex_state = 35}, + [878] = {.lex_state = 0, .external_lex_state = 40}, + [879] = {.lex_state = 0, .external_lex_state = 41}, + [880] = {.lex_state = 0, .external_lex_state = 35}, + [881] = {.lex_state = 0, .external_lex_state = 40}, + [882] = {.lex_state = 0, .external_lex_state = 41}, + [883] = {.lex_state = 0, .external_lex_state = 35}, + [884] = {.lex_state = 0, .external_lex_state = 40}, + [885] = {.lex_state = 0, .external_lex_state = 41}, + [886] = {.lex_state = 12, .external_lex_state = 35}, + [887] = {.lex_state = 12, .external_lex_state = 35}, + [888] = {.lex_state = 0, .external_lex_state = 35}, + [889] = {.lex_state = 0, .external_lex_state = 35}, + [890] = {.lex_state = 0, .external_lex_state = 35}, + [891] = {.lex_state = 0, .external_lex_state = 35}, + [892] = {.lex_state = 0}, + [893] = {.lex_state = 0, .external_lex_state = 35}, + [894] = {.lex_state = 0, .external_lex_state = 35}, + [895] = {.lex_state = 0, .external_lex_state = 35}, + [896] = {.lex_state = 0, .external_lex_state = 35}, + [897] = {.lex_state = 0, .external_lex_state = 35}, + [898] = {.lex_state = 0, .external_lex_state = 35}, + [899] = {.lex_state = 0, .external_lex_state = 35}, + [900] = {.lex_state = 0, .external_lex_state = 35}, + [901] = {.lex_state = 0, .external_lex_state = 35}, + [902] = {.lex_state = 0, .external_lex_state = 35}, + [903] = {.lex_state = 0, .external_lex_state = 35}, + [904] = {.lex_state = 0, .external_lex_state = 35}, + [905] = {.lex_state = 0, .external_lex_state = 35}, + [906] = {.lex_state = 0, .external_lex_state = 40}, + [907] = {.lex_state = 0, .external_lex_state = 35}, + [908] = {.lex_state = 0, .external_lex_state = 35}, + [909] = {.lex_state = 0, .external_lex_state = 35}, + [910] = {.lex_state = 0, .external_lex_state = 35}, + [911] = {.lex_state = 0, .external_lex_state = 35}, + [912] = {.lex_state = 0, .external_lex_state = 35}, + [913] = {.lex_state = 0, .external_lex_state = 35}, + [914] = {.lex_state = 0, .external_lex_state = 40}, + [915] = {.lex_state = 0, .external_lex_state = 41}, + [916] = {.lex_state = 0, .external_lex_state = 41}, + [917] = {.lex_state = 0, .external_lex_state = 35}, + [918] = {.lex_state = 0, .external_lex_state = 40}, + [919] = {.lex_state = 0, .external_lex_state = 35}, + [920] = {.lex_state = 0, .external_lex_state = 41}, + [921] = {.lex_state = 0, .external_lex_state = 35}, + [922] = {.lex_state = 0, .external_lex_state = 35}, + [923] = {.lex_state = 0, .external_lex_state = 40}, + [924] = {.lex_state = 0, .external_lex_state = 41}, + [925] = {.lex_state = 0, .external_lex_state = 35}, + [926] = {.lex_state = 0, .external_lex_state = 40}, + [927] = {.lex_state = 0}, + [928] = {.lex_state = 0, .external_lex_state = 42}, + [929] = {.lex_state = 0, .external_lex_state = 35}, + [930] = {.lex_state = 0, .external_lex_state = 43}, + [931] = {.lex_state = 0}, [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 = 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}, + [933] = {.lex_state = 0, .external_lex_state = 35}, + [934] = {.lex_state = 0, .external_lex_state = 35}, + [935] = {.lex_state = 0}, + [936] = {.lex_state = 0, .external_lex_state = 35}, + [937] = {.lex_state = 0, .external_lex_state = 35}, + [938] = {.lex_state = 0, .external_lex_state = 35}, [939] = {.lex_state = 0}, - [940] = {.lex_state = 0, .external_lex_state = 34}, - [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 = 0}, - [945] = {.lex_state = 0, .external_lex_state = 34}, - [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 = 12, .external_lex_state = 34}, - [951] = {.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}, - [956] = {.lex_state = 0, .external_lex_state = 34}, - [957] = {.lex_state = 0, .external_lex_state = 34}, - [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, .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}, + [940] = {.lex_state = 0, .external_lex_state = 35}, + [941] = {.lex_state = 0, .external_lex_state = 35}, + [942] = {.lex_state = 0}, + [943] = {.lex_state = 0, .external_lex_state = 35}, + [944] = {.lex_state = 0, .external_lex_state = 35}, + [945] = {.lex_state = 0, .external_lex_state = 35}, + [946] = {.lex_state = 0, .external_lex_state = 35}, + [947] = {.lex_state = 0, .external_lex_state = 35}, + [948] = {.lex_state = 0, .external_lex_state = 35}, + [949] = {.lex_state = 0, .external_lex_state = 35}, + [950] = {.lex_state = 0, .external_lex_state = 35}, + [951] = {.lex_state = 0, .external_lex_state = 35}, + [952] = {.lex_state = 0, .external_lex_state = 35}, + [953] = {.lex_state = 0, .external_lex_state = 35}, + [954] = {.lex_state = 0}, + [955] = {.lex_state = 0, .external_lex_state = 41}, + [956] = {.lex_state = 0, .external_lex_state = 35}, + [957] = {.lex_state = 0, .external_lex_state = 35}, + [958] = {.lex_state = 0, .external_lex_state = 35}, + [959] = {.lex_state = 0, .external_lex_state = 35}, + [960] = {.lex_state = 0, .external_lex_state = 35}, + [961] = {.lex_state = 0, .external_lex_state = 43}, + [962] = {.lex_state = 0, .external_lex_state = 35}, + [963] = {.lex_state = 0, .external_lex_state = 40}, + [964] = {.lex_state = 0, .external_lex_state = 35}, [965] = {.lex_state = 0}, - [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 = 34}, - [979] = {.lex_state = 0, .external_lex_state = 34}, - [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}, - [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 = 44}, - [995] = {.lex_state = 0, .external_lex_state = 44}, - [996] = {.lex_state = 0, .external_lex_state = 44}, - [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 = 44}, - [1003] = {.lex_state = 0, .external_lex_state = 44}, - [1004] = {.lex_state = 0, .external_lex_state = 44}, + [966] = {.lex_state = 0, .external_lex_state = 35}, + [967] = {.lex_state = 0, .external_lex_state = 35}, + [968] = {.lex_state = 0, .external_lex_state = 35}, + [969] = {.lex_state = 0, .external_lex_state = 41}, + [970] = {.lex_state = 0, .external_lex_state = 35}, + [971] = {.lex_state = 0, .external_lex_state = 35}, + [972] = {.lex_state = 0, .external_lex_state = 35}, + [973] = {.lex_state = 0, .external_lex_state = 35}, + [974] = {.lex_state = 0, .external_lex_state = 35}, + [975] = {.lex_state = 0, .external_lex_state = 35}, + [976] = {.lex_state = 0, .external_lex_state = 35}, + [977] = {.lex_state = 0, .external_lex_state = 35}, + [978] = {.lex_state = 0, .external_lex_state = 35}, + [979] = {.lex_state = 0}, + [980] = {.lex_state = 0, .external_lex_state = 35}, + [981] = {.lex_state = 0}, + [982] = {.lex_state = 0, .external_lex_state = 35}, + [983] = {.lex_state = 0, .external_lex_state = 44}, + [984] = {.lex_state = 0, .external_lex_state = 35}, + [985] = {.lex_state = 0, .external_lex_state = 45}, + [986] = {.lex_state = 0, .external_lex_state = 44}, + [987] = {.lex_state = 0, .external_lex_state = 35}, + [988] = {.lex_state = 0, .external_lex_state = 35}, + [989] = {.lex_state = 0, .external_lex_state = 44}, + [990] = {.lex_state = 0, .external_lex_state = 45}, + [991] = {.lex_state = 0, .external_lex_state = 45}, + [992] = {.lex_state = 0, .external_lex_state = 45}, + [993] = {.lex_state = 0, .external_lex_state = 45}, + [994] = {.lex_state = 0, .external_lex_state = 45}, + [995] = {.lex_state = 0, .external_lex_state = 45}, + [996] = {.lex_state = 0, .external_lex_state = 45}, + [997] = {.lex_state = 0, .external_lex_state = 45}, + [998] = {.lex_state = 0, .external_lex_state = 35}, + [999] = {.lex_state = 0, .external_lex_state = 45}, + [1000] = {.lex_state = 0, .external_lex_state = 35}, + [1001] = {.lex_state = 0, .external_lex_state = 45}, + [1002] = {.lex_state = 0, .external_lex_state = 45}, + [1003] = {.lex_state = 0, .external_lex_state = 45}, + [1004] = {.lex_state = 0, .external_lex_state = 45}, [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}, + [1006] = {.lex_state = 0, .external_lex_state = 45}, + [1007] = {.lex_state = 0, .external_lex_state = 45}, + [1008] = {.lex_state = 0, .external_lex_state = 35}, + [1009] = {.lex_state = 0, .external_lex_state = 45}, + [1010] = {.lex_state = 0, .external_lex_state = 45}, [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, .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}, + [1012] = {.lex_state = 0, .external_lex_state = 45}, + [1013] = {.lex_state = 0, .external_lex_state = 45}, + [1014] = {.lex_state = 0}, + [1015] = {.lex_state = 0, .external_lex_state = 45}, + [1016] = {.lex_state = 0, .external_lex_state = 35}, + [1017] = {.lex_state = 0, .external_lex_state = 45}, + [1018] = {.lex_state = 0}, [1019] = {.lex_state = 0, .external_lex_state = 44}, - [1020] = {.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 = 34}, - [1026] = {.lex_state = 0, .external_lex_state = 44}, + [1020] = {.lex_state = 0, .external_lex_state = 45}, + [1021] = {.lex_state = 0, .external_lex_state = 44}, + [1022] = {.lex_state = 0}, + [1023] = {.lex_state = 0, .external_lex_state = 45}, + [1024] = {.lex_state = 0, .external_lex_state = 45}, + [1025] = {.lex_state = 0, .external_lex_state = 45}, + [1026] = {.lex_state = 0, .external_lex_state = 45}, [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}, + [1028] = {.lex_state = 0, .external_lex_state = 45}, + [1029] = {.lex_state = 0, .external_lex_state = 45}, + [1030] = {.lex_state = 0, .external_lex_state = 45}, + [1031] = {.lex_state = 0, .external_lex_state = 45}, + [1032] = {.lex_state = 0, .external_lex_state = 45}, + [1033] = {.lex_state = 0, .external_lex_state = 45}, + [1034] = {.lex_state = 0}, + [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0, .external_lex_state = 44}, - [1038] = {.lex_state = 0, .external_lex_state = 44}, - [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 = 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}, + [1037] = {.lex_state = 0, .external_lex_state = 45}, + [1038] = {.lex_state = 0, .external_lex_state = 45}, + [1039] = {.lex_state = 0, .external_lex_state = 45}, + [1040] = {.lex_state = 0, .external_lex_state = 35}, + [1041] = {.lex_state = 0, .external_lex_state = 45}, + [1042] = {.lex_state = 0, .external_lex_state = 45}, + [1043] = {.lex_state = 0, .external_lex_state = 45}, + [1044] = {.lex_state = 0, .external_lex_state = 45}, + [1045] = {.lex_state = 0, .external_lex_state = 35}, + [1046] = {.lex_state = 0, .external_lex_state = 45}, [1047] = {.lex_state = 0, .external_lex_state = 44}, - [1048] = {.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 = 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}, - [1060] = {.lex_state = 0, .external_lex_state = 34}, - [1061] = {.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 = 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}, + [1048] = {.lex_state = 0, .external_lex_state = 45}, + [1049] = {.lex_state = 0, .external_lex_state = 45}, + [1050] = {.lex_state = 0, .external_lex_state = 45}, + [1051] = {.lex_state = 0, .external_lex_state = 44}, + [1052] = {.lex_state = 0, .external_lex_state = 45}, + [1053] = {.lex_state = 0, .external_lex_state = 45}, + [1054] = {.lex_state = 0, .external_lex_state = 45}, + [1055] = {.lex_state = 0}, + [1056] = {.lex_state = 0, .external_lex_state = 35}, + [1057] = {.lex_state = 0, .external_lex_state = 45}, + [1058] = {.lex_state = 0, .external_lex_state = 45}, + [1059] = {.lex_state = 0, .external_lex_state = 45}, + [1060] = {.lex_state = 0, .external_lex_state = 45}, + [1061] = {.lex_state = 0, .external_lex_state = 45}, + [1062] = {.lex_state = 0, .external_lex_state = 45}, + [1063] = {.lex_state = 0, .external_lex_state = 35}, + [1064] = {.lex_state = 0, .external_lex_state = 45}, + [1065] = {.lex_state = 0, .external_lex_state = 45}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 0, .external_lex_state = 45}, + [1068] = {.lex_state = 12}, + [1069] = {.lex_state = 0, .external_lex_state = 45}, + [1070] = {.lex_state = 0, .external_lex_state = 44}, [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}, + [1074] = {.lex_state = 0, .external_lex_state = 44}, + [1075] = {.lex_state = 0, .external_lex_state = 44}, [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}, + [1077] = {.lex_state = 0, .external_lex_state = 44}, + [1078] = {.lex_state = 0, .external_lex_state = 45}, + [1079] = {.lex_state = 0}, + [1080] = {.lex_state = 0, .external_lex_state = 44}, + [1081] = {.lex_state = 0, .external_lex_state = 44}, + [1082] = {.lex_state = 0, .external_lex_state = 44}, + [1083] = {.lex_state = 0, .external_lex_state = 44}, [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}, + [1085] = {.lex_state = 0, .external_lex_state = 44}, + [1086] = {.lex_state = 0, .external_lex_state = 44}, + [1087] = {.lex_state = 0, .external_lex_state = 44}, + [1088] = {.lex_state = 0, .external_lex_state = 45}, + [1089] = {.lex_state = 0, .external_lex_state = 45}, + [1090] = {.lex_state = 0, .external_lex_state = 44}, + [1091] = {.lex_state = 0, .external_lex_state = 45}, + [1092] = {.lex_state = 0, .external_lex_state = 45}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -4460,65 +4442,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__latex_span_close] = ACTIONS(1), }, [STATE(1)] = { - [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_document] = STATE(1036), + [sym__block_not_section] = STATE(453), + [sym_section] = STATE(686), + [sym__section1] = STATE(743), + [sym__section2] = STATE(743), + [sym__section3] = STATE(743), + [sym__section4] = STATE(743), + [sym__section5] = STATE(743), + [sym__section6] = STATE(743), + [sym_thematic_break] = STATE(453), + [sym__atx_heading1] = STATE(71), [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(90), + [sym__atx_heading3] = 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(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), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), [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), + [aux_sym_document_repeat2] = STATE(686), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(3), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -4589,61 +4572,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4712,34 +4696,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(3)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -4752,25 +4737,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1069), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4838,34 +4823,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(4)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -4878,25 +4864,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1020), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -4964,34 +4950,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(5)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -5004,25 +4991,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1024), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5090,34 +5077,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(6)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -5130,25 +5118,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1029), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5219,61 +5207,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(9), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [sym_indented_code_block] = STATE(9), [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(9), [sym_fenced_code_block] = STATE(9), - [sym_paragraph] = STATE(142), + [sym_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(9), [sym_note_definition_fenced_block] = STATE(9), - [sym__blank_line] = STATE(9), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(9), [sym_block_quote] = STATE(9), [sym_list] = STATE(9), - [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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [sym_pipe_table] = STATE(9), [aux_sym_fenced_div_block_repeat1] = STATE(9), - [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5345,61 +5334,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(10), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [sym_indented_code_block] = STATE(10), [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(10), [sym_fenced_code_block] = STATE(10), - [sym_paragraph] = STATE(142), + [sym_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(10), [sym_note_definition_fenced_block] = STATE(10), - [sym__blank_line] = STATE(10), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(10), [sym_block_quote] = STATE(10), [sym_list] = STATE(10), - [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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [sym_pipe_table] = STATE(10), [aux_sym_fenced_div_block_repeat1] = STATE(10), - [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5471,61 +5461,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5597,61 +5588,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5723,61 +5715,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(153), [anon_sym_LBRACE] = ACTIONS(156), [anon_sym_RBRACE] = ACTIONS(156), @@ -5849,29 +5842,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block] = STATE(48), [sym__block_not_section] = STATE(48), [sym_section] = STATE(48), - [sym__section1] = STATE(346), - [sym__section2] = STATE(346), - [sym__section3] = STATE(346), - [sym__section4] = STATE(346), - [sym__section5] = STATE(346), - [sym__section6] = STATE(346), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(48), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(48), [sym_fenced_code_block] = STATE(48), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(48), [sym_note_definition_fenced_block] = STATE(48), - [sym__blank_line] = STATE(48), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(48), [sym_block_quote] = STATE(48), [sym_list] = STATE(48), [sym__list_plus] = STATE(352), @@ -5886,24 +5880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -5975,61 +5969,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [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_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(2), [sym_note_definition_fenced_block] = STATE(2), - [sym__blank_line] = STATE(2), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6101,61 +6096,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [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_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(16), [sym_note_definition_fenced_block] = STATE(16), - [sym__blank_line] = STATE(16), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6227,29 +6223,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(54), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(54), [sym_fenced_code_block] = STATE(54), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(54), [sym_note_definition_fenced_block] = STATE(54), - [sym__blank_line] = STATE(54), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(54), [sym_block_quote] = STATE(54), [sym_list] = STATE(54), [sym__list_plus] = STATE(352), @@ -6264,24 +6261,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6353,61 +6350,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6479,29 +6477,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(52), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(52), [sym_fenced_code_block] = STATE(52), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(52), [sym_note_definition_fenced_block] = STATE(52), - [sym__blank_line] = STATE(52), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(52), [sym_block_quote] = STATE(52), [sym_list] = STATE(52), [sym__list_plus] = STATE(352), @@ -6516,24 +6515,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6602,34 +6601,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(18)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -6642,25 +6642,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1025), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6731,61 +6731,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(21), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [sym_indented_code_block] = STATE(21), [sym__indented_chunk] = STATE(124), [sym_fenced_div_block] = STATE(21), [sym_fenced_code_block] = STATE(21), - [sym_paragraph] = STATE(142), + [sym_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(21), [sym_note_definition_fenced_block] = STATE(21), - [sym__blank_line] = STATE(21), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(21), [sym_block_quote] = STATE(21), [sym_list] = STATE(21), - [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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [sym_pipe_table] = STATE(21), [aux_sym_fenced_div_block_repeat1] = STATE(21), - [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6857,61 +6858,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [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_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(22), [sym_note_definition_fenced_block] = STATE(22), - [sym__blank_line] = STATE(22), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -6983,61 +6985,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7109,61 +7112,62 @@ 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(232), - [sym__section2] = STATE(232), - [sym__section3] = STATE(232), - [sym__section4] = STATE(232), - [sym__section5] = STATE(232), - [sym__section6] = STATE(232), + [sym__section1] = STATE(218), + [sym__section2] = STATE(218), + [sym__section3] = STATE(218), + [sym__section4] = STATE(218), + [sym__section5] = STATE(218), + [sym__section6] = STATE(218), [sym_thematic_break] = STATE(11), - [sym__atx_heading1] = STATE(69), - [sym__atx_heading2] = STATE(77), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading1] = STATE(70), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(11), [sym_note_definition_fenced_block] = STATE(11), - [sym__blank_line] = STATE(11), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7232,34 +7236,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(23)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7272,25 +7277,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1039), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7358,34 +7363,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(24)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7398,25 +7404,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1028), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7484,34 +7490,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(25)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7524,25 +7531,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1044), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7610,34 +7617,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(26)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7650,25 +7658,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1065), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7736,34 +7744,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(27)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7776,25 +7785,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1006), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7862,34 +7871,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(28)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -7902,25 +7912,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1009), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -7988,34 +7998,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(29)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8028,25 +8039,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1030), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8114,34 +8125,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(30)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8154,25 +8166,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1031), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8240,34 +8252,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(31)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8280,25 +8293,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1032), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8366,34 +8379,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(32)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8406,25 +8420,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1037), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8492,34 +8506,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(33)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8532,25 +8547,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1038), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8618,34 +8633,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(34)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8658,25 +8674,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1041), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8744,34 +8760,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(35)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8784,25 +8801,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1017), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8870,34 +8887,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(36)] = { - [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__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -8910,24 +8928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -8995,34 +9013,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(37)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9035,24 +9054,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1088), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9087,7 +9107,6 @@ 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(319), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -9112,7 +9131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(119), [sym__pipe_table_start] = ACTIONS(121), [sym__fenced_div_start] = ACTIONS(123), [sym_ref_id_specifier] = ACTIONS(125), @@ -9120,34 +9139,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(38)] = { - [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__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9160,25 +9180,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9213,6 +9232,7 @@ 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(319), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -9237,7 +9257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(317), [sym__pipe_table_start] = ACTIONS(121), [sym__fenced_div_start] = ACTIONS(123), [sym_ref_id_specifier] = ACTIONS(125), @@ -9245,34 +9265,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(39)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9285,25 +9306,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1013), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9370,34 +9391,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(40)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9410,25 +9432,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1062), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9495,34 +9517,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9535,25 +9558,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1089), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9620,34 +9643,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9660,25 +9684,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1010), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9745,34 +9769,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9785,24 +9810,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1012), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [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(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), + [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(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(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -9869,35 +10020,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(45)] = { + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -9910,24 +10062,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(153), [anon_sym_LBRACE] = ACTIONS(156), [anon_sym_RBRACE] = ACTIONS(156), @@ -9994,65 +10146,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(159), [sym__inline_math_state_track_marker] = ACTIONS(159), }, - [STATE(45)] = { - [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), + [STATE(46)] = { + [sym__block_not_section] = STATE(453), + [sym_section] = STATE(687), + [sym__section1] = STATE(743), + [sym__section2] = STATE(743), + [sym__section3] = STATE(743), + [sym__section4] = STATE(743), + [sym__section5] = STATE(743), + [sym__section6] = STATE(743), + [sym_thematic_break] = STATE(453), + [sym__atx_heading1] = STATE(71), [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(90), + [sym__atx_heading3] = 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(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), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym_document_repeat2] = STATE(687), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(371), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -10119,35 +10272,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(46)] = { - [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), + [STATE(47)] = { + [sym__block] = STATE(49), + [sym__block_not_section] = STATE(49), + [sym_section] = STATE(49), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [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(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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(49), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(49), + [sym_fenced_code_block] = STATE(49), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(49), + [sym_note_definition_fenced_block] = STATE(49), + [sym__blank_line] = STATE(300), + [sym_caption] = 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), @@ -10160,25 +10314,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(49), + [aux_sym_fenced_div_block_repeat1] = STATE(49), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10213,6 +10366,7 @@ 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(375), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -10237,42 +10391,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(377), [sym__pipe_table_start] = ACTIONS(121), [sym__fenced_div_start] = ACTIONS(123), [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(47)] = { - [sym__block] = STATE(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), + [STATE(48)] = { + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -10285,24 +10440,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10362,42 +10517,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(48)] = { - [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), + [STATE(49)] = { + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -10410,24 +10566,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10462,7 +10618,7 @@ 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(375), + [sym__block_close] = ACTIONS(379), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -10494,65 +10650,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(49)] = { - [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), + [STATE(50)] = { + [sym__block_not_section] = STATE(453), + [sym_section] = STATE(685), + [sym__section1] = STATE(743), + [sym__section2] = STATE(743), + [sym__section3] = STATE(743), + [sym__section4] = STATE(743), + [sym__section5] = STATE(743), + [sym__section6] = STATE(743), + [sym_thematic_break] = STATE(453), + [sym__atx_heading1] = STATE(71), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(121), + [aux_sym_document_repeat2] = STATE(685), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(381), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10587,16 +10745,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(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__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), @@ -10609,76 +10766,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(317), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(50)] = { - [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), + [STATE(51)] = { + [sym__block] = STATE(36), + [sym__block_not_section] = STATE(36), + [sym_section] = STATE(36), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(36), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = 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(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), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(36), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(36), + [sym_fenced_code_block] = STATE(36), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(36), + [sym_note_definition_fenced_block] = STATE(36), + [sym__blank_line] = STATE(300), + [sym_caption] = 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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(36), + [aux_sym_fenced_div_block_repeat1] = STATE(36), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10713,15 +10870,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), @@ -10734,45 +10892,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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(51)] = { - [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), + [STATE(52)] = { + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -10785,24 +10944,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10862,40 +11021,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(52)] = { + [STATE(53)] = { [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__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(44), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(44), [sym_fenced_code_block] = STATE(44), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(44), [sym_note_definition_fenced_block] = STATE(44), - [sym__blank_line] = STATE(44), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(44), [sym_block_quote] = STATE(44), [sym_list] = STATE(44), [sym__list_plus] = STATE(352), @@ -10910,24 +11070,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -10962,7 +11122,7 @@ 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(383), + [sym__block_close] = ACTIONS(387), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -10987,42 +11147,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(389), [sym__pipe_table_start] = ACTIONS(121), [sym__fenced_div_start] = ACTIONS(123), [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(53)] = { - [sym__block] = STATE(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), + [STATE(54)] = { + [sym__block] = STATE(45), + [sym__block_not_section] = STATE(45), + [sym_section] = STATE(45), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(45), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(45), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(45), + [sym_fenced_code_block] = STATE(45), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(45), + [sym_note_definition_fenced_block] = STATE(45), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(45), + [sym_block_quote] = STATE(45), + [sym_list] = STATE(45), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11035,24 +11196,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(45), + [aux_sym_fenced_div_block_repeat1] = STATE(45), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11112,42 +11273,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(54)] = { - [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), + [STATE(55)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11160,24 +11322,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1091), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11212,7 +11375,6 @@ 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(387), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), [sym_atx_h1_marker] = ACTIONS(99), @@ -11237,73 +11399,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(119), [sym__pipe_table_start] = ACTIONS(121), [sym__fenced_div_start] = ACTIONS(123), [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(55)] = { - [sym__block_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), + [STATE(56)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), + [sym__atx_heading1] = STATE(74), + [sym__atx_heading2] = 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(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), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(990), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11338,15 +11501,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), @@ -11359,45 +11522,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), + [sym_minus_metadata] = ACTIONS(119), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(56)] = { - [sym__block] = STATE(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), + [STATE(57)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11410,25 +11574,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(999), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11494,35 +11658,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(57)] = { - [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), + [STATE(58)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11535,25 +11700,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1001), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11619,35 +11784,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(58)] = { - [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), + [STATE(59)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11660,25 +11826,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1002), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11744,35 +11910,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(59)] = { - [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), + [STATE(60)] = { + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -11785,25 +11952,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), [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), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11869,66 +12036,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(60)] = { - [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), + [STATE(61)] = { + [sym__block_not_section] = STATE(453), + [sym_section] = STATE(688), + [sym__section1] = STATE(743), + [sym__section2] = STATE(743), + [sym__section3] = STATE(743), + [sym__section4] = STATE(743), + [sym__section5] = STATE(743), + [sym__section6] = STATE(743), + [sym_thematic_break] = STATE(453), + [sym__atx_heading1] = STATE(71), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(121), + [aux_sym_document_repeat2] = STATE(688), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(391), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -11963,140 +12131,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(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), - [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(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(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), - [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(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__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), @@ -12109,45 +12152,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(119), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(62)] = { - [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12160,25 +12204,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1057), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12245,34 +12289,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12285,25 +12330,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1058), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12370,34 +12415,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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(37), + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12410,25 +12456,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1059), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12495,34 +12541,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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(37), + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12535,25 +12582,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1060), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12620,34 +12667,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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(37), + [sym__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12660,25 +12708,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1061), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12745,34 +12793,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block] = STATE(38), + [sym__block_not_section] = STATE(38), + [sym_section] = STATE(38), + [sym__section1] = STATE(345), + [sym__section2] = STATE(345), + [sym__section3] = STATE(345), + [sym__section4] = STATE(345), + [sym__section5] = STATE(345), + [sym__section6] = STATE(345), + [sym_thematic_break] = STATE(38), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(38), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(38), + [sym_fenced_code_block] = STATE(38), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(38), + [sym_note_definition_fenced_block] = STATE(38), + [sym__blank_line] = STATE(202), + [sym_caption] = STATE(38), + [sym_block_quote] = STATE(38), + [sym_list] = STATE(38), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -12785,25 +12834,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__list_item_content] = STATE(1043), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(38), + [aux_sym_fenced_div_block_repeat1] = STATE(38), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12870,60 +12919,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block_not_section] = STATE(68), + [sym__section2] = STATE(303), + [sym__section3] = STATE(303), + [sym__section4] = STATE(303), + [sym__section5] = STATE(303), + [sym__section6] = STATE(303), + [sym_thematic_break] = STATE(68), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [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(164), + [sym_inline_ref_def] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), + [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(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(68), + [aux_sym__section1_repeat1] = STATE(68), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_close] = ACTIONS(405), + [sym__block_quote_start] = ACTIONS(407), + [sym__indented_chunk_start] = ACTIONS(410), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(413), + [sym_atx_h3_marker] = ACTIONS(416), + [sym_atx_h4_marker] = ACTIONS(419), + [sym_atx_h5_marker] = ACTIONS(422), + [sym_atx_h6_marker] = ACTIONS(425), + [sym__thematic_break] = ACTIONS(428), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(449), + [sym__fenced_code_block_start_tilde] = ACTIONS(452), + [sym__blank_line_start] = ACTIONS(455), + [sym_minus_metadata] = ACTIONS(458), + [sym__pipe_table_start] = ACTIONS(461), + [sym__fenced_div_start] = ACTIONS(464), + [sym__fenced_div_end] = ACTIONS(405), + [sym_ref_id_specifier] = ACTIONS(467), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), + }, + [STATE(69)] = { + [sym__block_not_section] = STATE(68), + [sym__section2] = STATE(303), + [sym__section3] = STATE(303), + [sym__section4] = STATE(303), + [sym__section5] = STATE(303), + [sym__section6] = STATE(303), + [sym_thematic_break] = STATE(68), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = 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(70), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(68), [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_fenced_div_block] = STATE(68), + [sym_fenced_code_block] = STATE(68), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(68), + [sym_note_definition_fenced_block] = STATE(68), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(68), + [sym_block_quote] = STATE(68), + [sym_list] = STATE(68), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(68), + [aux_sym__section1_repeat1] = STATE(68), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -12958,10 +13131,10 @@ 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(393), + [sym__block_close] = ACTIONS(470), [sym__block_quote_start] = ACTIONS(59), [sym__indented_chunk_start] = ACTIONS(61), - [sym_atx_h1_marker] = ACTIONS(393), + [sym_atx_h1_marker] = ACTIONS(470), [sym_atx_h2_marker] = ACTIONS(65), [sym_atx_h3_marker] = ACTIONS(67), [sym_atx_h4_marker] = ACTIONS(69), @@ -12983,69 +13156,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(472), [sym__pipe_table_start] = ACTIONS(85), [sym__fenced_div_start] = ACTIONS(87), - [sym__fenced_div_end] = ACTIONS(393), + [sym__fenced_div_end] = ACTIONS(470), [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(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), + [STATE(70)] = { + [sym__block_not_section] = STATE(69), + [sym__section2] = STATE(303), + [sym__section3] = STATE(303), + [sym__section4] = STATE(303), + [sym__section5] = STATE(303), + [sym__section6] = STATE(303), + [sym_thematic_break] = STATE(69), + [sym__atx_heading2] = STATE(79), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = 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(68), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(69), [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_fenced_div_block] = STATE(69), + [sym_fenced_code_block] = STATE(69), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(69), + [sym_note_definition_fenced_block] = STATE(69), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(69), + [sym_block_quote] = STATE(69), + [sym_list] = STATE(69), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(69), + [aux_sym__section1_repeat1] = STATE(69), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13080,10 +13254,10 @@ 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(397), + [sym__block_close] = ACTIONS(474), [sym__block_quote_start] = ACTIONS(59), [sym__indented_chunk_start] = ACTIONS(61), - [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h1_marker] = ACTIONS(474), [sym_atx_h2_marker] = ACTIONS(65), [sym_atx_h3_marker] = ACTIONS(67), [sym_atx_h4_marker] = ACTIONS(69), @@ -13105,434 +13279,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(476), [sym__pipe_table_start] = ACTIONS(85), [sym__fenced_div_start] = ACTIONS(87), - [sym__fenced_div_end] = ACTIONS(397), + [sym__fenced_div_end] = ACTIONS(474), [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(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(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__block_not_section] = STATE(73), + [sym__section2] = STATE(365), + [sym__section3] = STATE(365), + [sym__section4] = STATE(365), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(73), [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(90), + [sym__atx_heading3] = 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(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), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(73), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(73), + [sym_fenced_code_block] = STATE(73), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(73), + [sym_note_definition_fenced_block] = STATE(73), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(73), + [sym_block_quote] = STATE(73), + [sym_list] = STATE(73), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(73), + [aux_sym__section1_repeat1] = STATE(73), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(474), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13569,7 +13380,7 @@ 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(397), + [sym_atx_h1_marker] = ACTIONS(474), [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), @@ -13591,36 +13402,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(478), [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(74)] = { + [STATE(72)] = { [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__section2] = STATE(360), + [sym__section3] = STATE(360), + [sym__section4] = STATE(360), + [sym__section5] = STATE(360), + [sym__section6] = STATE(360), [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__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(76), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(76), [sym_fenced_code_block] = STATE(76), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(76), [sym_note_definition_fenced_block] = STATE(76), - [sym__blank_line] = STATE(76), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(76), [sym_block_quote] = STATE(76), [sym_list] = STATE(76), [sym__list_plus] = STATE(352), @@ -13635,24 +13447,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13687,10 +13499,10 @@ 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(397), + [sym__block_close] = ACTIONS(470), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(397), + [sym_atx_h1_marker] = ACTIONS(470), [sym_atx_h2_marker] = ACTIONS(101), [sym_atx_h3_marker] = ACTIONS(103), [sym_atx_h4_marker] = ACTIONS(105), @@ -13712,69 +13524,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(480), [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(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), + [STATE(73)] = { + [sym__block_not_section] = STATE(75), + [sym__section2] = STATE(365), + [sym__section3] = STATE(365), + [sym__section4] = STATE(365), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(75), [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(90), + [sym__atx_heading3] = 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(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), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(75), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(75), + [sym_fenced_code_block] = STATE(75), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(75), + [sym_block_quote] = STATE(75), + [sym_list] = STATE(75), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(75), + [aux_sym__section1_repeat1] = STATE(75), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(470), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13811,7 +13624,7 @@ 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(393), + [sym_atx_h1_marker] = ACTIONS(470), [sym_atx_h2_marker] = ACTIONS(19), [sym_atx_h3_marker] = ACTIONS(21), [sym_atx_h4_marker] = ACTIONS(23), @@ -13833,38 +13646,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(482), [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(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), + [STATE(74)] = { + [sym__block_not_section] = STATE(72), + [sym__section2] = STATE(360), + [sym__section3] = STATE(360), + [sym__section4] = STATE(360), + [sym__section5] = STATE(360), + [sym__section6] = STATE(360), + [sym_thematic_break] = STATE(72), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(72), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(72), + [sym_fenced_code_block] = STATE(72), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(72), + [sym_note_definition_fenced_block] = STATE(72), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(72), + [sym_block_quote] = STATE(72), + [sym_list] = STATE(72), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -13877,24 +13691,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(72), + [aux_sym__section1_repeat1] = STATE(72), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -13929,10 +13743,10 @@ 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(393), + [sym__block_close] = ACTIONS(474), [sym__block_quote_start] = ACTIONS(95), [sym__indented_chunk_start] = ACTIONS(97), - [sym_atx_h1_marker] = ACTIONS(393), + [sym_atx_h1_marker] = ACTIONS(474), [sym_atx_h2_marker] = ACTIONS(101), [sym_atx_h3_marker] = ACTIONS(103), [sym_atx_h4_marker] = ACTIONS(105), @@ -13954,66 +13768,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(484), [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(75)] = { + [sym__block_not_section] = STATE(75), + [sym__section2] = STATE(365), + [sym__section3] = STATE(365), + [sym__section4] = STATE(365), + [sym__section5] = STATE(365), + [sym__section6] = STATE(365), + [sym_thematic_break] = STATE(75), + [sym__atx_heading2] = STATE(85), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(75), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(75), + [sym_fenced_code_block] = STATE(75), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(75), + [sym_note_definition_fenced_block] = STATE(75), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(75), + [sym_block_quote] = STATE(75), + [sym_list] = STATE(75), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(75), + [aux_sym__section1_repeat1] = STATE(75), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(405), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_quote_start] = ACTIONS(486), + [sym__indented_chunk_start] = ACTIONS(489), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(492), + [sym_atx_h3_marker] = ACTIONS(495), + [sym_atx_h4_marker] = ACTIONS(498), + [sym_atx_h5_marker] = ACTIONS(501), + [sym_atx_h6_marker] = ACTIONS(504), + [sym__thematic_break] = ACTIONS(507), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(510), + [sym__fenced_code_block_start_tilde] = ACTIONS(513), + [sym__blank_line_start] = ACTIONS(516), + [sym_minus_metadata] = ACTIONS(519), + [sym__pipe_table_start] = ACTIONS(522), + [sym__fenced_div_start] = ACTIONS(525), + [sym_ref_id_specifier] = ACTIONS(528), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), + }, + [STATE(76)] = { + [sym__block_not_section] = STATE(76), + [sym__section2] = STATE(360), + [sym__section3] = STATE(360), + [sym__section4] = STATE(360), + [sym__section5] = STATE(360), + [sym__section6] = STATE(360), + [sym_thematic_break] = STATE(76), + [sym__atx_heading2] = STATE(81), + [sym__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(76), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(76), + [sym_fenced_code_block] = STATE(76), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(76), + [sym_note_definition_fenced_block] = STATE(76), + [sym__blank_line] = STATE(300), + [sym_caption] = 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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(76), + [aux_sym__section1_repeat1] = STATE(76), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(393), + [anon_sym_LBRACE] = ACTIONS(396), + [anon_sym_RBRACE] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_SQUOTE] = ACTIONS(396), + [anon_sym_BANG] = ACTIONS(396), + [anon_sym_DQUOTE] = ACTIONS(396), + [anon_sym_POUND] = ACTIONS(396), + [anon_sym_DOLLAR] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_RPAREN] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_SEMI] = ACTIONS(396), + [anon_sym_LT] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(396), + [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_AT] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_BSLASH] = ACTIONS(396), + [anon_sym_RBRACK] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), + [anon_sym__] = ACTIONS(396), + [anon_sym_BQUOTE] = ACTIONS(396), + [anon_sym_PIPE] = ACTIONS(396), + [anon_sym_TILDE] = ACTIONS(396), + [sym__word] = ACTIONS(399), + [sym__soft_line_ending] = ACTIONS(402), + [sym__block_close] = ACTIONS(405), + [sym__block_quote_start] = ACTIONS(531), + [sym__indented_chunk_start] = ACTIONS(534), + [sym_atx_h1_marker] = ACTIONS(405), + [sym_atx_h2_marker] = ACTIONS(537), + [sym_atx_h3_marker] = ACTIONS(540), + [sym_atx_h4_marker] = ACTIONS(543), + [sym_atx_h5_marker] = ACTIONS(546), + [sym_atx_h6_marker] = ACTIONS(549), + [sym__thematic_break] = ACTIONS(552), + [sym__list_marker_minus] = ACTIONS(431), + [sym__list_marker_plus] = ACTIONS(434), + [sym__list_marker_star] = ACTIONS(437), + [sym__list_marker_parenthesis] = ACTIONS(440), + [sym__list_marker_dot] = ACTIONS(443), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(431), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(437), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(440), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(443), + [sym__list_marker_example] = ACTIONS(446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(446), + [sym__fenced_code_block_start_backtick] = ACTIONS(555), + [sym__fenced_code_block_start_tilde] = ACTIONS(558), + [sym__blank_line_start] = ACTIONS(561), + [sym_minus_metadata] = ACTIONS(564), + [sym__pipe_table_start] = ACTIONS(567), + [sym__fenced_div_start] = ACTIONS(570), + [sym_ref_id_specifier] = ACTIONS(573), + [sym__display_math_state_track_marker] = ACTIONS(399), + [sym__inline_math_state_track_marker] = ACTIONS(399), + }, [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__block_not_section] = STATE(77), + [sym__section3] = STATE(305), + [sym__section4] = STATE(305), + [sym__section5] = STATE(305), + [sym__section6] = STATE(305), + [sym_thematic_break] = STATE(77), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = 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(79), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(77), [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_fenced_div_block] = STATE(77), + [sym_fenced_code_block] = STATE(77), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(77), + [sym_note_definition_fenced_block] = STATE(77), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(77), + [sym_block_quote] = STATE(77), + [sym_list] = STATE(77), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(77), + [aux_sym__section2_repeat1] = STATE(77), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_POUND] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_BSLASH] = ACTIONS(579), + [anon_sym_RBRACK] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym__] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(579), + [sym__word] = ACTIONS(582), + [sym__soft_line_ending] = ACTIONS(585), + [sym__block_close] = ACTIONS(588), + [sym__block_quote_start] = ACTIONS(590), + [sym__indented_chunk_start] = ACTIONS(593), + [sym_atx_h1_marker] = ACTIONS(588), + [sym_atx_h2_marker] = ACTIONS(588), + [sym_atx_h3_marker] = ACTIONS(596), + [sym_atx_h4_marker] = ACTIONS(599), + [sym_atx_h5_marker] = ACTIONS(602), + [sym_atx_h6_marker] = ACTIONS(605), + [sym__thematic_break] = ACTIONS(608), + [sym__list_marker_minus] = ACTIONS(611), + [sym__list_marker_plus] = ACTIONS(614), + [sym__list_marker_star] = ACTIONS(617), + [sym__list_marker_parenthesis] = ACTIONS(620), + [sym__list_marker_dot] = ACTIONS(623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(617), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(623), + [sym__list_marker_example] = ACTIONS(626), + [sym__list_marker_example_dont_interrupt] = ACTIONS(626), + [sym__fenced_code_block_start_backtick] = ACTIONS(629), + [sym__fenced_code_block_start_tilde] = ACTIONS(632), + [sym__blank_line_start] = ACTIONS(635), + [sym_minus_metadata] = ACTIONS(638), + [sym__pipe_table_start] = ACTIONS(641), + [sym__fenced_div_start] = ACTIONS(644), + [sym__fenced_div_end] = ACTIONS(588), + [sym_ref_id_specifier] = ACTIONS(647), + [sym__display_math_state_track_marker] = ACTIONS(582), + [sym__inline_math_state_track_marker] = ACTIONS(582), + }, + [STATE(78)] = { + [sym__block_not_section] = STATE(77), + [sym__section3] = STATE(305), + [sym__section4] = STATE(305), + [sym__section5] = STATE(305), + [sym__section6] = STATE(305), + [sym_thematic_break] = STATE(77), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(77), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(77), + [sym_fenced_code_block] = STATE(77), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(77), + [sym_note_definition_fenced_block] = STATE(77), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(77), + [sym_block_quote] = STATE(77), + [sym_list] = STATE(77), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), + [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(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(77), + [aux_sym__section2_repeat1] = STATE(77), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14048,11 +14228,11 @@ 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(576), + [sym__block_close] = ACTIONS(650), [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_h1_marker] = ACTIONS(650), + [sym_atx_h2_marker] = ACTIONS(650), [sym_atx_h3_marker] = ACTIONS(67), [sym_atx_h4_marker] = ACTIONS(69), [sym_atx_h5_marker] = ACTIONS(71), @@ -14073,187 +14253,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(652), [sym__pipe_table_start] = ACTIONS(85), [sym__fenced_div_start] = ACTIONS(87), - [sym__fenced_div_end] = ACTIONS(576), + [sym__fenced_div_end] = ACTIONS(650), [sym_ref_id_specifier] = ACTIONS(91), [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(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__section3] = STATE(305), + [sym__section4] = STATE(305), + [sym__section5] = STATE(305), + [sym__section6] = STATE(305), [sym_thematic_break] = STATE(78), - [sym__atx_heading3] = STATE(87), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading3] = STATE(88), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(78), [sym_note_definition_fenced_block] = STATE(78), - [sym__blank_line] = STATE(78), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14322,58 +14383,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(80)] = { - [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), + [sym__block_not_section] = STATE(83), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), + [sym_thematic_break] = STATE(83), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(83), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(83), + [sym_fenced_code_block] = STATE(83), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(83), + [sym_note_definition_fenced_block] = STATE(83), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(83), + [sym_block_quote] = STATE(83), + [sym_list] = STATE(83), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(83), + [aux_sym__section2_repeat1] = STATE(83), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(650), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14408,16 +14471,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(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__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(650), + [sym_atx_h2_marker] = ACTIONS(650), + [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), @@ -14430,156 +14492,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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(658), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(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__section3] = STATE(361), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), [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__atx_heading3] = STATE(90), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(82), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(82), [sym_fenced_code_block] = STATE(82), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(82), [sym_note_definition_fenced_block] = STATE(82), - [sym__blank_line] = STATE(82), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(82), [sym_block_quote] = STATE(82), [sym_list] = STATE(82), [sym__list_plus] = STATE(352), @@ -14594,143 +14538,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14765,11 +14590,11 @@ 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(576), + [sym__block_close] = ACTIONS(654), [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_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), @@ -14790,67 +14615,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(660), [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(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), + [STATE(82)] = { + [sym__block_not_section] = STATE(84), + [sym__section3] = STATE(361), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), + [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(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), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(84), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(84), + [sym_fenced_code_block] = STATE(84), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(84), + [sym_note_definition_fenced_block] = STATE(84), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(84), + [sym_block_quote] = STATE(84), + [sym_list] = STATE(84), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(84), + [aux_sym__section2_repeat1] = STATE(84), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -14885,15 +14710,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(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), - [sym__thematic_break] = ACTIONS(29), + [sym__block_close] = ACTIONS(650), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(650), + [sym_atx_h2_marker] = ACTIONS(650), + [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), @@ -14906,70 +14732,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(746), - [sym__pipe_table_start] = ACTIONS(51), - [sym__fenced_div_start] = ACTIONS(53), - [sym_ref_id_specifier] = ACTIONS(55), + [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(662), + [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(85)] = { + [STATE(83)] = { + [sym__block_not_section] = STATE(83), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), + [sym_thematic_break] = STATE(83), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(83), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(83), + [sym_fenced_code_block] = STATE(83), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(83), + [sym_note_definition_fenced_block] = STATE(83), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(83), + [sym_block_quote] = STATE(83), + [sym_list] = STATE(83), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(83), + [aux_sym__section2_repeat1] = STATE(83), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(588), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_POUND] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_BSLASH] = ACTIONS(579), + [anon_sym_RBRACK] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym__] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(579), + [sym__word] = ACTIONS(582), + [sym__soft_line_ending] = ACTIONS(585), + [sym__block_quote_start] = ACTIONS(664), + [sym__indented_chunk_start] = ACTIONS(667), + [sym_atx_h1_marker] = ACTIONS(588), + [sym_atx_h2_marker] = ACTIONS(588), + [sym_atx_h3_marker] = ACTIONS(670), + [sym_atx_h4_marker] = ACTIONS(673), + [sym_atx_h5_marker] = ACTIONS(676), + [sym_atx_h6_marker] = ACTIONS(679), + [sym__thematic_break] = ACTIONS(682), + [sym__list_marker_minus] = ACTIONS(611), + [sym__list_marker_plus] = ACTIONS(614), + [sym__list_marker_star] = ACTIONS(617), + [sym__list_marker_parenthesis] = ACTIONS(620), + [sym__list_marker_dot] = ACTIONS(623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(617), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(623), + [sym__list_marker_example] = ACTIONS(626), + [sym__list_marker_example_dont_interrupt] = ACTIONS(626), + [sym__fenced_code_block_start_backtick] = ACTIONS(685), + [sym__fenced_code_block_start_tilde] = ACTIONS(688), + [sym__blank_line_start] = ACTIONS(691), + [sym_minus_metadata] = ACTIONS(694), + [sym__pipe_table_start] = ACTIONS(697), + [sym__fenced_div_start] = ACTIONS(700), + [sym_ref_id_specifier] = ACTIONS(703), + [sym__display_math_state_track_marker] = ACTIONS(582), + [sym__inline_math_state_track_marker] = ACTIONS(582), + }, + [STATE(84)] = { [sym__block_not_section] = STATE(84), - [sym__section3] = STATE(371), - [sym__section4] = STATE(371), - [sym__section5] = STATE(371), - [sym__section6] = STATE(371), + [sym__section3] = STATE(361), + [sym__section4] = STATE(361), + [sym__section5] = STATE(361), + [sym__section6] = STATE(361), [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__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(84), - [sym__indented_chunk] = STATE(173), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(84), [sym_fenced_code_block] = STATE(84), - [sym_paragraph] = STATE(202), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(84), [sym_note_definition_fenced_block] = STATE(84), - [sym__blank_line] = STATE(84), + [sym__blank_line] = STATE(300), + [sym_caption] = 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__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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(579), + [anon_sym_EQ] = ACTIONS(579), + [anon_sym_SQUOTE] = ACTIONS(579), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_DQUOTE] = ACTIONS(579), + [anon_sym_POUND] = ACTIONS(579), + [anon_sym_DOLLAR] = ACTIONS(579), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(579), + [anon_sym_LPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_STAR] = ACTIONS(579), + [anon_sym_PLUS] = ACTIONS(579), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_DASH] = ACTIONS(579), + [anon_sym_DOT] = ACTIONS(579), + [anon_sym_SLASH] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(579), + [anon_sym_LT] = ACTIONS(579), + [anon_sym_GT] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(579), + [anon_sym_LBRACK] = ACTIONS(579), + [anon_sym_BSLASH] = ACTIONS(579), + [anon_sym_RBRACK] = ACTIONS(579), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym__] = ACTIONS(579), + [anon_sym_BQUOTE] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(579), + [anon_sym_TILDE] = ACTIONS(579), + [sym__word] = ACTIONS(582), + [sym__soft_line_ending] = ACTIONS(585), + [sym__block_close] = ACTIONS(588), + [sym__block_quote_start] = ACTIONS(706), + [sym__indented_chunk_start] = ACTIONS(709), + [sym_atx_h1_marker] = ACTIONS(588), + [sym_atx_h2_marker] = ACTIONS(588), + [sym_atx_h3_marker] = ACTIONS(712), + [sym_atx_h4_marker] = ACTIONS(715), + [sym_atx_h5_marker] = ACTIONS(718), + [sym_atx_h6_marker] = ACTIONS(721), + [sym__thematic_break] = ACTIONS(724), + [sym__list_marker_minus] = ACTIONS(611), + [sym__list_marker_plus] = ACTIONS(614), + [sym__list_marker_star] = ACTIONS(617), + [sym__list_marker_parenthesis] = ACTIONS(620), + [sym__list_marker_dot] = ACTIONS(623), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(611), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(614), + [sym__list_marker_star_dont_interrupt] = ACTIONS(617), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(623), + [sym__list_marker_example] = ACTIONS(626), + [sym__list_marker_example_dont_interrupt] = ACTIONS(626), + [sym__fenced_code_block_start_backtick] = ACTIONS(727), + [sym__fenced_code_block_start_tilde] = ACTIONS(730), + [sym__blank_line_start] = ACTIONS(733), + [sym_minus_metadata] = ACTIONS(736), + [sym__pipe_table_start] = ACTIONS(739), + [sym__fenced_div_start] = ACTIONS(742), + [sym_ref_id_specifier] = ACTIONS(745), + [sym__display_math_state_track_marker] = ACTIONS(582), + [sym__inline_math_state_track_marker] = ACTIONS(582), + }, + [STATE(85)] = { + [sym__block_not_section] = STATE(80), + [sym__section3] = STATE(367), + [sym__section4] = STATE(367), + [sym__section5] = STATE(367), + [sym__section6] = STATE(367), + [sym_thematic_break] = STATE(80), + [sym__atx_heading3] = STATE(89), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(80), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(80), + [sym_fenced_code_block] = STATE(80), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(80), + [sym_note_definition_fenced_block] = STATE(80), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(80), + [sym_block_quote] = STATE(80), + [sym_list] = STATE(80), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(80), + [aux_sym__section2_repeat1] = STATE(80), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(654), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15006,8 +15073,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(576), - [sym_atx_h2_marker] = ACTIONS(576), + [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), @@ -15037,55 +15104,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(86)] = { [sym__block_not_section] = STATE(86), - [sym__section4] = STATE(234), - [sym__section5] = STATE(234), - [sym__section6] = STATE(234), + [sym__section4] = STATE(310), + [sym__section5] = STATE(310), + [sym__section6] = STATE(310), [sym_thematic_break] = STATE(86), - [sym__atx_heading4] = STATE(96), + [sym__atx_heading4] = STATE(97), [sym__atx_heading5] = STATE(106), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(86), [sym_note_definition_fenced_block] = STATE(86), - [sym__blank_line] = STATE(86), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(750), [anon_sym_LBRACE] = ACTIONS(753), [anon_sym_RBRACE] = ACTIONS(753), @@ -15154,56 +15222,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__block_not_section] = STATE(86), + [sym__section4] = STATE(310), + [sym__section5] = STATE(310), + [sym__section6] = STATE(310), + [sym_thematic_break] = STATE(86), + [sym__atx_heading4] = 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(88), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(86), [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_fenced_div_block] = STATE(86), + [sym_fenced_code_block] = STATE(86), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(86), + [sym_note_definition_fenced_block] = STATE(86), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(86), + [sym_block_quote] = STATE(86), + [sym_list] = STATE(86), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(86), + [aux_sym__section3_repeat1] = STATE(86), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15272,56 +15341,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block_not_section] = STATE(87), + [sym__section4] = STATE(310), + [sym__section5] = STATE(310), + [sym__section6] = STATE(310), + [sym_thematic_break] = STATE(87), + [sym__atx_heading4] = 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(86), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(87), [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_fenced_div_block] = STATE(87), + [sym_fenced_code_block] = STATE(87), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(87), + [sym_note_definition_fenced_block] = STATE(87), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(87), + [sym_block_quote] = STATE(87), + [sym_list] = STATE(87), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(87), + [aux_sym__section3_repeat1] = STATE(87), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15390,174 +15460,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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(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__block_not_section] = STATE(94), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym_thematic_break] = STATE(94), [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), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(94), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(94), + [sym_fenced_code_block] = STATE(94), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(94), + [sym_note_definition_fenced_block] = STATE(94), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(94), + [sym_block_quote] = STATE(94), + [sym_list] = STATE(94), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(94), + [aux_sym__section3_repeat1] = STATE(94), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(825), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15594,9 +15548,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(821), - [sym_atx_h2_marker] = ACTIONS(821), - [sym_atx_h3_marker] = ACTIONS(821), + [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), @@ -15616,32 +15570,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(829), [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(91)] = { + [STATE(90)] = { [sym__block_not_section] = STATE(91), - [sym__section4] = STATE(364), - [sym__section5] = STATE(364), - [sym__section6] = STATE(364), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), [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__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), [sym_indented_code_block] = STATE(91), - [sym__indented_chunk] = STATE(143), + [sym__indented_chunk] = STATE(163), [sym_fenced_div_block] = STATE(91), [sym_fenced_code_block] = STATE(91), - [sym_paragraph] = STATE(179), + [sym_paragraph] = STATE(200), [sym_inline_ref_def] = STATE(91), [sym_note_definition_fenced_block] = STATE(91), - [sym__blank_line] = STATE(91), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(91), [sym_block_quote] = STATE(91), [sym_list] = STATE(91), [sym__list_plus] = STATE(352), @@ -15656,142 +15611,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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(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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15826,15 +15663,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__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(23), - [sym_atx_h5_marker] = ACTIONS(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [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), @@ -15847,37 +15685,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(909), - [sym__pipe_table_start] = ACTIONS(51), - [sym__fenced_div_start] = ACTIONS(53), - [sym_ref_id_specifier] = ACTIONS(55), + [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(831), + [sym__pipe_table_start] = ACTIONS(121), + [sym__fenced_div_start] = ACTIONS(123), + [sym_ref_id_specifier] = ACTIONS(125), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(93)] = { - [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), + [STATE(91)] = { + [sym__block_not_section] = STATE(92), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), + [sym_thematic_break] = STATE(92), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(92), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(92), + [sym_fenced_code_block] = STATE(92), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(92), + [sym_note_definition_fenced_block] = STATE(92), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(92), + [sym_block_quote] = STATE(92), + [sym_list] = STATE(92), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -15890,24 +15729,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(92), + [aux_sym__section3_repeat1] = STATE(92), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -15942,12 +15781,12 @@ 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(825), + [sym__block_close] = ACTIONS(821), [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_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), @@ -15967,34 +15806,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(833), [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(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), + [STATE(92)] = { + [sym__block_not_section] = STATE(92), + [sym__section4] = STATE(362), + [sym__section5] = STATE(362), + [sym__section6] = STATE(362), + [sym_thematic_break] = STATE(92), + [sym__atx_heading4] = STATE(98), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(92), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(92), + [sym_fenced_code_block] = STATE(92), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(92), + [sym_note_definition_fenced_block] = STATE(92), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(92), + [sym_block_quote] = STATE(92), + [sym_list] = STATE(92), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -16007,24 +15847,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(92), + [aux_sym__section3_repeat1] = STATE(92), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [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(835), + [sym__indented_chunk_start] = ACTIONS(838), + [sym_atx_h1_marker] = ACTIONS(762), + [sym_atx_h2_marker] = ACTIONS(762), + [sym_atx_h3_marker] = ACTIONS(762), + [sym_atx_h4_marker] = ACTIONS(841), + [sym_atx_h5_marker] = ACTIONS(844), + [sym_atx_h6_marker] = ACTIONS(847), + [sym__thematic_break] = ACTIONS(850), + [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(853), + [sym__fenced_code_block_start_tilde] = ACTIONS(856), + [sym__blank_line_start] = ACTIONS(859), + [sym_minus_metadata] = ACTIONS(862), + [sym__pipe_table_start] = ACTIONS(865), + [sym__fenced_div_start] = ACTIONS(868), + [sym_ref_id_specifier] = ACTIONS(871), + [sym__display_math_state_track_marker] = ACTIONS(756), + [sym__inline_math_state_track_marker] = ACTIONS(756), + }, + [STATE(93)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym_thematic_break] = STATE(93), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(93), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(93), + [sym_fenced_code_block] = STATE(93), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(93), + [sym_block_quote] = STATE(93), + [sym_list] = STATE(93), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(93), + [aux_sym__section3_repeat1] = STATE(93), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [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(874), + [sym__indented_chunk_start] = ACTIONS(877), + [sym_atx_h1_marker] = ACTIONS(762), + [sym_atx_h2_marker] = ACTIONS(762), + [sym_atx_h3_marker] = ACTIONS(762), + [sym_atx_h4_marker] = ACTIONS(880), + [sym_atx_h5_marker] = ACTIONS(883), + [sym_atx_h6_marker] = ACTIONS(886), + [sym__thematic_break] = ACTIONS(889), + [sym__list_marker_minus] = ACTIONS(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(892), + [sym__fenced_code_block_start_tilde] = ACTIONS(895), + [sym__blank_line_start] = ACTIONS(898), + [sym_minus_metadata] = ACTIONS(901), + [sym__pipe_table_start] = ACTIONS(904), + [sym__fenced_div_start] = ACTIONS(907), + [sym_ref_id_specifier] = ACTIONS(910), + [sym__display_math_state_track_marker] = ACTIONS(756), + [sym__inline_math_state_track_marker] = ACTIONS(756), + }, + [STATE(94)] = { + [sym__block_not_section] = STATE(93), + [sym__section4] = STATE(369), + [sym__section5] = STATE(369), + [sym__section6] = STATE(369), + [sym_thematic_break] = STATE(93), + [sym__atx_heading4] = STATE(99), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(93), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(93), + [sym_fenced_code_block] = STATE(93), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(93), + [sym_note_definition_fenced_block] = STATE(93), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(93), + [sym_block_quote] = STATE(93), + [sym_list] = STATE(93), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(821), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16059,16 +16136,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(821), - [sym__block_quote_start] = ACTIONS(95), - [sym__indented_chunk_start] = ACTIONS(97), + [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(105), - [sym_atx_h5_marker] = ACTIONS(107), - [sym_atx_h6_marker] = ACTIONS(109), - [sym__thematic_break] = ACTIONS(111), + [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), @@ -16081,65 +16157,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__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(913), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(97), - [sym__section5] = STATE(240), - [sym__section6] = STATE(240), - [sym_thematic_break] = STATE(97), + [sym__block_not_section] = STATE(96), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = 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(97), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(96), [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_fenced_div_block] = STATE(96), + [sym_fenced_code_block] = STATE(96), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(96), + [sym_note_definition_fenced_block] = STATE(96), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(96), + [sym_block_quote] = STATE(96), + [sym_list] = STATE(96), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(96), + [aux_sym__section4_repeat1] = STATE(96), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16208,54 +16285,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(96)] = { + [sym__block_not_section] = STATE(96), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), + [sym_thematic_break] = STATE(96), + [sym__atx_heading5] = STATE(106), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(96), + [sym__indented_chunk] = STATE(124), + [sym_fenced_div_block] = STATE(96), + [sym_fenced_code_block] = STATE(96), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(96), + [sym_note_definition_fenced_block] = STATE(96), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(96), + [sym_block_quote] = STATE(96), + [sym_list] = STATE(96), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), + [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(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(96), + [aux_sym__section4_repeat1] = STATE(96), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym__] = ACTIONS(922), + [anon_sym_BQUOTE] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [sym__word] = ACTIONS(925), + [sym__soft_line_ending] = ACTIONS(928), + [sym__block_close] = ACTIONS(931), + [sym__block_quote_start] = ACTIONS(933), + [sym__indented_chunk_start] = ACTIONS(936), + [sym_atx_h1_marker] = ACTIONS(931), + [sym_atx_h2_marker] = ACTIONS(931), + [sym_atx_h3_marker] = ACTIONS(931), + [sym_atx_h4_marker] = ACTIONS(931), + [sym_atx_h5_marker] = ACTIONS(939), + [sym_atx_h6_marker] = ACTIONS(942), + [sym__thematic_break] = ACTIONS(945), + [sym__list_marker_minus] = ACTIONS(948), + [sym__list_marker_plus] = ACTIONS(951), + [sym__list_marker_star] = ACTIONS(954), + [sym__list_marker_parenthesis] = ACTIONS(957), + [sym__list_marker_dot] = ACTIONS(960), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), + [sym__list_marker_star_dont_interrupt] = ACTIONS(954), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(957), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(960), + [sym__list_marker_example] = ACTIONS(963), + [sym__list_marker_example_dont_interrupt] = ACTIONS(963), + [sym__fenced_code_block_start_backtick] = ACTIONS(966), + [sym__fenced_code_block_start_tilde] = ACTIONS(969), + [sym__blank_line_start] = ACTIONS(972), + [sym_minus_metadata] = ACTIONS(975), + [sym__pipe_table_start] = ACTIONS(978), + [sym__fenced_div_start] = ACTIONS(981), + [sym__fenced_div_end] = ACTIONS(931), + [sym_ref_id_specifier] = ACTIONS(984), + [sym__display_math_state_track_marker] = ACTIONS(925), + [sym__inline_math_state_track_marker] = ACTIONS(925), + }, + [STATE(97)] = { [sym__block_not_section] = STATE(95), - [sym__section5] = STATE(240), - [sym__section6] = STATE(240), + [sym__section5] = STATE(316), + [sym__section6] = STATE(316), [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__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(95), [sym_note_definition_fenced_block] = STATE(95), - [sym__blank_line] = STATE(95), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16290,13 +16485,13 @@ 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(919), + [sym__block_close] = ACTIONS(987), [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_h1_marker] = ACTIONS(987), + [sym_atx_h2_marker] = ACTIONS(987), + [sym_atx_h3_marker] = ACTIONS(987), + [sym_atx_h4_marker] = ACTIONS(987), [sym_atx_h5_marker] = ACTIONS(71), [sym_atx_h6_marker] = ACTIONS(73), [sym__thematic_break] = ACTIONS(75), @@ -16315,149 +16510,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(989), [sym__pipe_table_start] = ACTIONS(85), [sym__fenced_div_start] = ACTIONS(87), - [sym__fenced_div_end] = ACTIONS(919), + [sym__fenced_div_end] = ACTIONS(987), [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [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__block_not_section] = STATE(100), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym_thematic_break] = STATE(100), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(100), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(100), + [sym_fenced_code_block] = STATE(100), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(100), + [sym_note_definition_fenced_block] = STATE(100), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(100), + [sym_block_quote] = STATE(100), + [sym_list] = STATE(100), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -16470,140 +16550,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(100), + [aux_sym__section4_repeat1] = STATE(100), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16638,15 +16602,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(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__block_close] = ACTIONS(987), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(987), + [sym_atx_h2_marker] = ACTIONS(987), + [sym_atx_h3_marker] = ACTIONS(987), + [sym_atx_h4_marker] = ACTIONS(987), + [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), @@ -16659,180 +16624,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1027), - [sym__pipe_table_start] = ACTIONS(51), - [sym__fenced_div_start] = ACTIONS(53), - [sym_ref_id_specifier] = ACTIONS(55), + [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(991), + [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(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(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), + [STATE(99)] = { + [sym__block_not_section] = STATE(101), + [sym__section5] = STATE(384), + [sym__section6] = STATE(384), + [sym_thematic_break] = STATE(101), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(101), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(101), + [sym_fenced_code_block] = STATE(101), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(101), + [sym_note_definition_fenced_block] = STATE(101), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(101), + [sym_block_quote] = STATE(101), + [sym_list] = STATE(101), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(101), + [aux_sym__section4_repeat1] = STATE(101), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(987), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16867,16 +16719,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(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__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(987), + [sym_atx_h2_marker] = ACTIONS(987), + [sym_atx_h3_marker] = ACTIONS(987), + [sym_atx_h4_marker] = ACTIONS(987), + [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), @@ -16889,66 +16740,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1065), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(993), + [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(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), + [STATE(100)] = { + [sym__block_not_section] = STATE(102), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym_thematic_break] = STATE(102), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(102), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(102), + [sym_fenced_code_block] = STATE(102), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(102), + [sym_note_definition_fenced_block] = STATE(102), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(102), + [sym_block_quote] = STATE(102), + [sym_list] = STATE(102), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(102), + [aux_sym__section4_repeat1] = STATE(102), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -16983,15 +16834,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__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(25), - [sym_atx_h6_marker] = ACTIONS(27), - [sym__thematic_break] = ACTIONS(29), + [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), @@ -17004,65 +16856,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1067), - [sym__pipe_table_start] = ACTIONS(51), - [sym__fenced_div_start] = ACTIONS(53), - [sym_ref_id_specifier] = ACTIONS(55), + [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(995), + [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(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), + [STATE(101)] = { + [sym__block_not_section] = STATE(103), + [sym__section5] = STATE(384), + [sym__section6] = STATE(384), + [sym_thematic_break] = STATE(103), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(103), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(103), + [sym_fenced_code_block] = STATE(103), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(103), + [sym_note_definition_fenced_block] = STATE(103), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(103), + [sym_block_quote] = STATE(103), + [sym_list] = STATE(103), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(103), + [aux_sym__section4_repeat1] = STATE(103), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(915), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17097,16 +16951,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(915), - [sym__block_quote_start] = ACTIONS(95), - [sym__indented_chunk_start] = ACTIONS(97), + [sym__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), [sym_atx_h1_marker] = ACTIONS(915), [sym_atx_h2_marker] = ACTIONS(915), [sym_atx_h3_marker] = ACTIONS(915), [sym_atx_h4_marker] = ACTIONS(915), - [sym_atx_h5_marker] = ACTIONS(107), - [sym_atx_h6_marker] = ACTIONS(109), - [sym__thematic_break] = ACTIONS(111), + [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), @@ -17119,177 +16972,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1069), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(997), + [sym__pipe_table_start] = ACTIONS(51), + [sym__fenced_div_start] = ACTIONS(53), + [sym_ref_id_specifier] = ACTIONS(55), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(104)] = { - [sym__block_not_section] = STATE(104), - [sym__section6] = STATE(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(102)] = { + [sym__block_not_section] = STATE(102), + [sym__section5] = STATE(363), + [sym__section6] = STATE(363), + [sym_thematic_break] = STATE(102), + [sym__atx_heading5] = STATE(109), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(102), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(102), + [sym_fenced_code_block] = STATE(102), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(102), + [sym_note_definition_fenced_block] = STATE(102), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(102), + [sym_block_quote] = STATE(102), + [sym_list] = STATE(102), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(102), + [aux_sym__section4_repeat1] = STATE(102), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym__] = ACTIONS(922), + [anon_sym_BQUOTE] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [sym__word] = ACTIONS(925), + [sym__soft_line_ending] = ACTIONS(928), + [sym__block_close] = ACTIONS(931), + [sym__block_quote_start] = ACTIONS(999), + [sym__indented_chunk_start] = ACTIONS(1002), + [sym_atx_h1_marker] = ACTIONS(931), + [sym_atx_h2_marker] = ACTIONS(931), + [sym_atx_h3_marker] = ACTIONS(931), + [sym_atx_h4_marker] = ACTIONS(931), + [sym_atx_h5_marker] = ACTIONS(1005), + [sym_atx_h6_marker] = ACTIONS(1008), + [sym__thematic_break] = ACTIONS(1011), + [sym__list_marker_minus] = ACTIONS(948), + [sym__list_marker_plus] = ACTIONS(951), + [sym__list_marker_star] = ACTIONS(954), + [sym__list_marker_parenthesis] = ACTIONS(957), + [sym__list_marker_dot] = ACTIONS(960), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), + [sym__list_marker_star_dont_interrupt] = ACTIONS(954), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(957), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(960), + [sym__list_marker_example] = ACTIONS(963), + [sym__list_marker_example_dont_interrupt] = ACTIONS(963), + [sym__fenced_code_block_start_backtick] = ACTIONS(1014), + [sym__fenced_code_block_start_tilde] = ACTIONS(1017), + [sym__blank_line_start] = ACTIONS(1020), + [sym_minus_metadata] = ACTIONS(1023), + [sym__pipe_table_start] = ACTIONS(1026), + [sym__fenced_div_start] = ACTIONS(1029), + [sym_ref_id_specifier] = ACTIONS(1032), + [sym__display_math_state_track_marker] = ACTIONS(925), + [sym__inline_math_state_track_marker] = ACTIONS(925), }, - [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), + [STATE(103)] = { + [sym__block_not_section] = STATE(103), + [sym__section5] = STATE(384), + [sym__section6] = STATE(384), + [sym_thematic_break] = STATE(103), + [sym__atx_heading5] = STATE(111), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(103), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(103), + [sym_fenced_code_block] = STATE(103), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(103), + [sym_note_definition_fenced_block] = STATE(103), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(103), + [sym_block_quote] = STATE(103), + [sym_list] = STATE(103), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(103), + [aux_sym__section4_repeat1] = STATE(103), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(931), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(919), + [anon_sym_LBRACE] = ACTIONS(922), + [anon_sym_RBRACE] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_DQUOTE] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(922), + [anon_sym_DOLLAR] = ACTIONS(922), + [anon_sym_PERCENT] = ACTIONS(922), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_LPAREN] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(922), + [anon_sym_LBRACK] = ACTIONS(922), + [anon_sym_BSLASH] = ACTIONS(922), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym__] = ACTIONS(922), + [anon_sym_BQUOTE] = ACTIONS(922), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(922), + [sym__word] = ACTIONS(925), + [sym__soft_line_ending] = ACTIONS(928), + [sym__block_quote_start] = ACTIONS(1035), + [sym__indented_chunk_start] = ACTIONS(1038), + [sym_atx_h1_marker] = ACTIONS(931), + [sym_atx_h2_marker] = ACTIONS(931), + [sym_atx_h3_marker] = ACTIONS(931), + [sym_atx_h4_marker] = ACTIONS(931), + [sym_atx_h5_marker] = ACTIONS(1041), + [sym_atx_h6_marker] = ACTIONS(1044), + [sym__thematic_break] = ACTIONS(1047), + [sym__list_marker_minus] = ACTIONS(948), + [sym__list_marker_plus] = ACTIONS(951), + [sym__list_marker_star] = ACTIONS(954), + [sym__list_marker_parenthesis] = ACTIONS(957), + [sym__list_marker_dot] = ACTIONS(960), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(948), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(951), + [sym__list_marker_star_dont_interrupt] = ACTIONS(954), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(957), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(960), + [sym__list_marker_example] = ACTIONS(963), + [sym__list_marker_example_dont_interrupt] = ACTIONS(963), + [sym__fenced_code_block_start_backtick] = ACTIONS(1050), + [sym__fenced_code_block_start_tilde] = ACTIONS(1053), + [sym__blank_line_start] = ACTIONS(1056), + [sym_minus_metadata] = ACTIONS(1059), + [sym__pipe_table_start] = ACTIONS(1062), + [sym__fenced_div_start] = ACTIONS(1065), + [sym_ref_id_specifier] = ACTIONS(1068), + [sym__display_math_state_track_marker] = ACTIONS(925), + [sym__inline_math_state_track_marker] = ACTIONS(925), + }, + [STATE(104)] = { + [sym__block_not_section] = STATE(105), + [sym__section6] = STATE(263), + [sym_thematic_break] = STATE(105), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(105), [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_fenced_div_block] = STATE(105), + [sym_fenced_code_block] = STATE(105), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(105), + [sym_note_definition_fenced_block] = STATE(105), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(105), + [sym_block_quote] = STATE(105), + [sym_list] = STATE(105), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(105), + [aux_sym__section5_repeat1] = STATE(105), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17324,14 +17296,14 @@ 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(1136), + [sym__block_close] = ACTIONS(1071), [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_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), [sym_atx_h6_marker] = ACTIONS(73), [sym__thematic_break] = ACTIONS(75), [sym__list_marker_minus] = ACTIONS(31), @@ -17349,61 +17321,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(1073), [sym__pipe_table_start] = ACTIONS(85), [sym__fenced_div_start] = ACTIONS(87), - [sym__fenced_div_end] = ACTIONS(1136), + [sym__fenced_div_end] = ACTIONS(1071), [sym_ref_id_specifier] = ACTIONS(91), [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [STATE(106)] = { + [STATE(105)] = { [sym__block_not_section] = STATE(105), - [sym__section6] = STATE(266), + [sym__section6] = STATE(263), [sym_thematic_break] = STATE(105), - [sym__atx_heading6] = STATE(113), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), [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_paragraph] = STATE(164), [sym_inline_ref_def] = STATE(105), [sym_note_definition_fenced_block] = STATE(105), - [sym__blank_line] = STATE(105), + [sym__blank_line] = STATE(196), + [sym_caption] = 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_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), + [sym__block_close] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1089), + [sym__indented_chunk_start] = ACTIONS(1092), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1095), + [sym__thematic_break] = ACTIONS(1098), + [sym__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), + [sym__fenced_code_block_start_backtick] = ACTIONS(1119), + [sym__fenced_code_block_start_tilde] = ACTIONS(1122), + [sym__blank_line_start] = ACTIONS(1125), + [sym_minus_metadata] = ACTIONS(1128), + [sym__pipe_table_start] = ACTIONS(1131), + [sym__fenced_div_start] = ACTIONS(1134), + [sym__fenced_div_end] = ACTIONS(1087), + [sym_ref_id_specifier] = ACTIONS(1137), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), + }, + [STATE(106)] = { + [sym__block_not_section] = STATE(104), + [sym__section6] = STATE(263), + [sym_thematic_break] = STATE(104), + [sym__atx_heading6] = STATE(114), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [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(164), + [sym_inline_ref_def] = STATE(104), + [sym_note_definition_fenced_block] = STATE(104), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(104), + [sym_block_quote] = STATE(104), + [sym_list] = STATE(104), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), + [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(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(104), + [aux_sym__section5_repeat1] = STATE(104), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17472,53 +17560,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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), + [sym__block_not_section] = STATE(110), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(110), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(110), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(110), + [sym_fenced_code_block] = STATE(110), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(110), + [sym_note_definition_fenced_block] = STATE(110), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(110), + [sym_block_quote] = STATE(110), + [sym_list] = STATE(110), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(110), + [aux_sym__section5_repeat1] = STATE(110), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17553,15 +17641,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(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__block_close] = ACTIONS(1071), + [sym__block_quote_start] = ACTIONS(95), + [sym__indented_chunk_start] = ACTIONS(97), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(109), + [sym__thematic_break] = ACTIONS(111), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -17574,119 +17663,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__fenced_code_block_start_backtick] = ACTIONS(113), + [sym__fenced_code_block_start_tilde] = ACTIONS(115), + [sym__blank_line_start] = ACTIONS(117), [sym_minus_metadata] = ACTIONS(1144), - [sym__pipe_table_start] = ACTIONS(51), - [sym__fenced_div_start] = ACTIONS(53), - [sym_ref_id_specifier] = ACTIONS(55), + [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(108)] = { [sym__block_not_section] = STATE(108), - [sym__section6] = STATE(388), + [sym__section6] = STATE(385), [sym_thematic_break] = STATE(108), - [sym__atx_heading6] = STATE(118), - [sym__setext_heading1] = STATE(391), - [sym__setext_heading2] = STATE(392), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), [sym_indented_code_block] = STATE(108), - [sym__indented_chunk] = STATE(173), + [sym__indented_chunk] = STATE(141), [sym_fenced_div_block] = STATE(108), [sym_fenced_code_block] = STATE(108), - [sym_paragraph] = STATE(202), + [sym_paragraph] = STATE(197), [sym_inline_ref_def] = STATE(108), [sym_note_definition_fenced_block] = STATE(108), - [sym__blank_line] = STATE(108), + [sym__blank_line] = STATE(281), + [sym_caption] = 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__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), [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), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(1087), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), [sym__block_quote_start] = ACTIONS(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_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), [sym_atx_h6_marker] = ACTIONS(1152), [sym__thematic_break] = ACTIONS(1155), - [sym__list_marker_minus] = ACTIONS(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__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), [sym__fenced_code_block_start_backtick] = ACTIONS(1158), [sym__fenced_code_block_start_tilde] = ACTIONS(1161), [sym__blank_line_start] = ACTIONS(1164), @@ -17694,139 +17784,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), }, [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__block_not_section] = STATE(107), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(107), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(107), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(107), + [sym_fenced_code_block] = STATE(107), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(107), + [sym_note_definition_fenced_block] = STATE(107), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(107), + [sym_block_quote] = STATE(107), + [sym_list] = STATE(107), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -17839,24 +17817,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(107), + [aux_sym__section5_repeat1] = STATE(107), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -17916,61 +17894,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus_metadata] = ACTIONS(1179), [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(110)] = { + [sym__block_not_section] = STATE(110), + [sym__section6] = STATE(364), + [sym_thematic_break] = STATE(110), + [sym__atx_heading6] = STATE(120), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(110), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(110), + [sym_fenced_code_block] = STATE(110), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(110), + [sym_note_definition_fenced_block] = STATE(110), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(110), + [sym_block_quote] = STATE(110), + [sym_list] = STATE(110), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(110), + [aux_sym__section5_repeat1] = STATE(110), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_SQUOTE] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_PERCENT] = ACTIONS(1078), + [anon_sym_AMP] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1078), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_COMMA] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_DOT] = ACTIONS(1078), + [anon_sym_SLASH] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1078), + [anon_sym_LT] = ACTIONS(1078), + [anon_sym_GT] = ACTIONS(1078), + [anon_sym_QMARK] = ACTIONS(1078), + [anon_sym_AT] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(1078), + [anon_sym_BSLASH] = ACTIONS(1078), + [anon_sym_RBRACK] = ACTIONS(1078), + [anon_sym_CARET] = ACTIONS(1078), + [anon_sym__] = ACTIONS(1078), + [anon_sym_BQUOTE] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1078), + [anon_sym_TILDE] = ACTIONS(1078), + [sym__word] = ACTIONS(1081), + [sym__soft_line_ending] = ACTIONS(1084), + [sym__block_close] = ACTIONS(1087), + [sym__block_quote_start] = ACTIONS(1181), + [sym__indented_chunk_start] = ACTIONS(1184), + [sym_atx_h1_marker] = ACTIONS(1087), + [sym_atx_h2_marker] = ACTIONS(1087), + [sym_atx_h3_marker] = ACTIONS(1087), + [sym_atx_h4_marker] = ACTIONS(1087), + [sym_atx_h5_marker] = ACTIONS(1087), + [sym_atx_h6_marker] = ACTIONS(1187), + [sym__thematic_break] = ACTIONS(1190), + [sym__list_marker_minus] = ACTIONS(1101), + [sym__list_marker_plus] = ACTIONS(1104), + [sym__list_marker_star] = ACTIONS(1107), + [sym__list_marker_parenthesis] = ACTIONS(1110), + [sym__list_marker_dot] = ACTIONS(1113), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1101), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1104), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1107), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1110), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1113), + [sym__list_marker_example] = ACTIONS(1116), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1116), + [sym__fenced_code_block_start_backtick] = ACTIONS(1193), + [sym__fenced_code_block_start_tilde] = ACTIONS(1196), + [sym__blank_line_start] = ACTIONS(1199), + [sym_minus_metadata] = ACTIONS(1202), + [sym__pipe_table_start] = ACTIONS(1205), + [sym__fenced_div_start] = ACTIONS(1208), + [sym_ref_id_specifier] = ACTIONS(1211), + [sym__display_math_state_track_marker] = ACTIONS(1081), + [sym__inline_math_state_track_marker] = ACTIONS(1081), + }, [STATE(111)] = { - [sym__block_not_section] = STATE(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), + [sym__block_not_section] = STATE(112), + [sym__section6] = STATE(385), + [sym_thematic_break] = STATE(112), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(112), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(112), + [sym_fenced_code_block] = STATE(112), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(112), + [sym_note_definition_fenced_block] = STATE(112), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(112), + [sym_block_quote] = STATE(112), + [sym_list] = STATE(112), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(112), + [aux_sym__section5_repeat1] = STATE(112), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(1140), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -18007,11 +18100,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(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_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), @@ -18037,52 +18130,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(112)] = { - [sym__block_not_section] = STATE(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), + [sym__block_not_section] = STATE(108), + [sym__section6] = STATE(385), + [sym_thematic_break] = STATE(108), + [sym__atx_heading6] = STATE(117), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(108), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(108), + [sym_fenced_code_block] = STATE(108), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(108), + [sym_note_definition_fenced_block] = STATE(108), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(108), + [sym_block_quote] = STATE(108), + [sym_list] = STATE(108), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(108), + [aux_sym__section5_repeat1] = STATE(108), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [ts_builtin_sym_end] = ACTIONS(1071), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -18117,16 +18212,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(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__block_quote_start] = ACTIONS(13), + [sym__indented_chunk_start] = ACTIONS(15), + [sym_atx_h1_marker] = ACTIONS(1071), + [sym_atx_h2_marker] = ACTIONS(1071), + [sym_atx_h3_marker] = ACTIONS(1071), + [sym_atx_h4_marker] = ACTIONS(1071), + [sym_atx_h5_marker] = ACTIONS(1071), + [sym_atx_h6_marker] = ACTIONS(27), + [sym__thematic_break] = ACTIONS(29), [sym__list_marker_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(33), [sym__list_marker_star] = ACTIONS(35), @@ -18139,61 +18233,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__fenced_code_block_start_backtick] = ACTIONS(43), + [sym__fenced_code_block_start_tilde] = ACTIONS(45), + [sym__blank_line_start] = ACTIONS(47), [sym_minus_metadata] = ACTIONS(1216), - [sym__pipe_table_start] = ACTIONS(121), - [sym__fenced_div_start] = ACTIONS(123), - [sym_ref_id_specifier] = ACTIONS(125), + [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(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__block_not_section] = STATE(217), + [sym_thematic_break] = STATE(217), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(217), [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_fenced_div_block] = STATE(217), + [sym_fenced_code_block] = STATE(217), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(217), + [sym_note_definition_fenced_block] = STATE(217), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(217), + [sym_block_quote] = STATE(217), + [sym_list] = STATE(217), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(217), + [aux_sym_document_repeat1] = STATE(115), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -18262,50 +18357,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(114)] = { - [sym__block_not_section] = STATE(228), - [sym_thematic_break] = STATE(228), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), - [sym_indented_code_block] = STATE(228), + [sym__block_not_section] = STATE(217), + [sym_thematic_break] = STATE(217), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(217), [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_fenced_div_block] = STATE(217), + [sym_fenced_code_block] = STATE(217), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(217), + [sym_note_definition_fenced_block] = STATE(217), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(217), + [sym_block_quote] = STATE(217), + [sym_list] = STATE(217), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(217), + [aux_sym_document_repeat1] = STATE(113), + [aux_sym_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -18374,50 +18470,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [STATE(115)] = { - [sym__block_not_section] = STATE(228), - [sym_thematic_break] = STATE(228), - [sym__setext_heading1] = STATE(275), - [sym__setext_heading2] = STATE(276), - [sym_indented_code_block] = STATE(228), + [sym__block_not_section] = STATE(217), + [sym_thematic_break] = STATE(217), + [sym__setext_heading1] = STATE(265), + [sym__setext_heading2] = STATE(266), + [sym_indented_code_block] = STATE(217), [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_fenced_div_block] = STATE(217), + [sym_fenced_code_block] = STATE(217), + [sym_paragraph] = STATE(164), + [sym_inline_ref_def] = STATE(217), + [sym_note_definition_fenced_block] = STATE(217), + [sym__blank_line] = STATE(196), + [sym_caption] = STATE(217), + [sym_block_quote] = STATE(217), + [sym_list] = STATE(217), + [sym__list_plus] = STATE(276), + [sym__list_minus] = STATE(276), + [sym__list_star] = STATE(276), + [sym__list_dot] = STATE(276), + [sym__list_parenthesis] = STATE(276), + [sym__list_example] = STATE(276), [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), + [sym__list_item_plus] = STATE(123), + [sym__list_item_minus] = STATE(128), + [sym__list_item_star] = STATE(122), + [sym__list_item_dot] = STATE(127), + [sym__list_item_parenthesis] = STATE(126), + [sym__list_item_example] = STATE(125), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(217), [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_paragraph_repeat1] = STATE(567), + [aux_sym__list_plus_repeat1] = STATE(123), + [aux_sym__list_minus_repeat1] = STATE(128), + [aux_sym__list_star_repeat1] = STATE(122), + [aux_sym__list_dot_repeat1] = STATE(127), + [aux_sym__list_parenthesis_repeat1] = STATE(126), + [aux_sym__list_example_repeat1] = STATE(125), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1224), [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_RBRACE] = ACTIONS(1227), @@ -18486,50 +18583,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1230), }, [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), + [sym__block_not_section] = STATE(344), + [sym_thematic_break] = STATE(344), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(344), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(344), + [sym_fenced_code_block] = STATE(344), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(344), + [sym_note_definition_fenced_block] = STATE(344), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(344), + [sym_block_quote] = STATE(344), + [sym_list] = STATE(344), + [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(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(344), + [aux_sym_document_repeat1] = STATE(116), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), + [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(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(117)] = { + [sym__block_not_section] = STATE(453), + [sym_thematic_break] = STATE(453), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(118), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1222), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -18596,162 +18806,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, - [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__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(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__list_parenthesis_repeat1] = STATE(163), - [aux_sym__list_example_repeat1] = STATE(164), + [sym__block_not_section] = STATE(453), + [sym_thematic_break] = STATE(453), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(121), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), [ts_builtin_sym_end] = ACTIONS(1218), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), @@ -18819,20 +18919,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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__block_not_section] = STATE(344), + [sym_thematic_break] = STATE(344), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(344), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(344), + [sym_fenced_code_block] = STATE(344), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(344), + [sym_note_definition_fenced_block] = STATE(344), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(344), + [sym_block_quote] = STATE(344), + [sym_list] = STATE(344), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -18845,24 +18946,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(344), + [aux_sym_document_repeat1] = STATE(116), + [aux_sym_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -18897,15 +18998,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(1222), + [sym__block_close] = ACTIONS(1218), [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_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), @@ -18930,131 +19031,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(9), }, [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(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__block_not_section] = STATE(344), + [sym_thematic_break] = STATE(344), + [sym__setext_heading1] = STATE(348), + [sym__setext_heading2] = STATE(349), + [sym_indented_code_block] = STATE(344), + [sym__indented_chunk] = STATE(163), + [sym_fenced_div_block] = STATE(344), + [sym_fenced_code_block] = STATE(344), + [sym_paragraph] = STATE(200), + [sym_inline_ref_def] = STATE(344), + [sym_note_definition_fenced_block] = STATE(344), + [sym__blank_line] = STATE(300), + [sym_caption] = STATE(344), + [sym_block_quote] = STATE(344), + [sym_list] = STATE(344), [sym__list_plus] = STATE(352), [sym__list_minus] = STATE(352), [sym__list_star] = STATE(352), @@ -19067,24 +19058,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__list_item_plus] = STATE(138), + [sym__list_item_minus] = STATE(165), + [sym__list_item_star] = STATE(166), + [sym__list_item_dot] = STATE(167), + [sym__list_item_parenthesis] = STATE(168), + [sym__list_item_example] = STATE(169), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(344), [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_paragraph_repeat1] = STATE(556), + [aux_sym__list_plus_repeat1] = STATE(138), + [aux_sym__list_minus_repeat1] = STATE(165), + [aux_sym__list_star_repeat1] = STATE(166), + [aux_sym__list_dot_repeat1] = STATE(167), + [aux_sym__list_parenthesis_repeat1] = STATE(168), + [aux_sym__list_example_repeat1] = STATE(169), [aux_sym__commonmark_whitespace_token1] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [anon_sym_RBRACE] = ACTIONS(7), @@ -19119,15 +19110,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(1218), + [sym__block_close] = ACTIONS(1222), [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_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), @@ -19151,10 +19142,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(9), [sym__inline_math_state_track_marker] = ACTIONS(9), }, + [STATE(121)] = { + [sym__block_not_section] = STATE(453), + [sym_thematic_break] = STATE(453), + [sym__setext_heading1] = STATE(386), + [sym__setext_heading2] = STATE(387), + [sym_indented_code_block] = STATE(453), + [sym__indented_chunk] = STATE(141), + [sym_fenced_div_block] = STATE(453), + [sym_fenced_code_block] = STATE(453), + [sym_paragraph] = STATE(197), + [sym_inline_ref_def] = STATE(453), + [sym_note_definition_fenced_block] = STATE(453), + [sym__blank_line] = STATE(281), + [sym_caption] = STATE(453), + [sym_block_quote] = STATE(453), + [sym_list] = STATE(453), + [sym__list_plus] = STATE(402), + [sym__list_minus] = STATE(402), + [sym__list_star] = STATE(402), + [sym__list_dot] = STATE(402), + [sym__list_parenthesis] = STATE(402), + [sym__list_example] = STATE(402), + [sym_list_marker_plus] = STATE(35), + [sym_list_marker_minus] = STATE(18), + [sym_list_marker_star] = STATE(3), + [sym_list_marker_dot] = STATE(4), + [sym_list_marker_parenthesis] = STATE(5), + [sym_list_marker_example] = STATE(6), + [sym__list_item_plus] = STATE(156), + [sym__list_item_minus] = STATE(157), + [sym__list_item_star] = STATE(158), + [sym__list_item_dot] = STATE(159), + [sym__list_item_parenthesis] = STATE(160), + [sym__list_item_example] = STATE(161), + [sym__soft_line_break] = STATE(650), + [sym__line] = STATE(650), + [sym__whitespace] = STATE(595), + [sym_pipe_table] = STATE(453), + [aux_sym_document_repeat1] = STATE(121), + [aux_sym_paragraph_repeat1] = STATE(553), + [aux_sym__list_plus_repeat1] = STATE(156), + [aux_sym__list_minus_repeat1] = STATE(157), + [aux_sym__list_star_repeat1] = STATE(158), + [aux_sym__list_dot_repeat1] = STATE(159), + [aux_sym__list_parenthesis_repeat1] = STATE(160), + [aux_sym__list_example_repeat1] = STATE(161), + [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(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(122)] = { - [sym__indented_chunk] = STATE(137), - [sym__blank_line] = STATE(137), - [aux_sym_indented_code_block_repeat1] = STATE(137), + [sym_list_marker_star] = STATE(31), + [sym__list_item_star] = STATE(134), + [aux_sym__list_star_repeat1] = STATE(134), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1348), [anon_sym_RBRACE] = ACTIONS(1348), @@ -19191,7 +19294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(1348), [sym__block_close] = ACTIONS(1348), [sym__block_quote_start] = ACTIONS(1348), - [sym__indented_chunk_start] = ACTIONS(61), + [sym__indented_chunk_start] = ACTIONS(1348), [sym_atx_h1_marker] = ACTIONS(1348), [sym_atx_h2_marker] = ACTIONS(1348), [sym_atx_h3_marker] = ACTIONS(1348), @@ -19201,19 +19304,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_star] = ACTIONS(35), [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_star_dont_interrupt] = ACTIONS(35), [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__blank_line_start] = ACTIONS(1348), [sym_minus_metadata] = ACTIONS(1348), [sym__pipe_table_start] = ACTIONS(1348), [sym__fenced_div_start] = ACTIONS(1348), @@ -19223,6 +19326,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__inline_math_state_track_marker] = ACTIONS(1348), }, [STATE(123)] = { + [sym_list_marker_plus] = STATE(29), + [sym__list_item_plus] = STATE(137), + [aux_sym__list_plus_repeat1] = STATE(137), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_RBRACE] = ACTIONS(1350), @@ -19258,7 +19364,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -19267,16 +19372,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_plus] = ACTIONS(33), [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_plus_dont_interrupt] = ACTIONS(33), [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), @@ -19294,9 +19397,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__indented_chunk] = STATE(129), + [sym__blank_line] = STATE(129), + [aux_sym_indented_code_block_repeat1] = STATE(129), + [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(61), + [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(1352), + [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(1352), + [sym__list_marker_example] = ACTIONS(1352), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1352), + [sym__fenced_code_block_start_backtick] = ACTIONS(1352), + [sym__fenced_code_block_start_tilde] = ACTIONS(1352), + [sym__blank_line_start] = ACTIONS(81), + [sym_minus_metadata] = ACTIONS(1352), + [sym__pipe_table_start] = ACTIONS(1352), + [sym__fenced_div_start] = ACTIONS(1352), + [sym__fenced_div_end] = ACTIONS(1352), + [sym_ref_id_specifier] = ACTIONS(1352), + [sym__display_math_state_track_marker] = ACTIONS(1352), + [sym__inline_math_state_track_marker] = ACTIONS(1352), + }, + [STATE(125)] = { + [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(1354), [anon_sym_LBRACE] = ACTIONS(1354), [anon_sym_RBRACE] = ACTIONS(1354), @@ -19333,7 +19507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(1354), [sym__block_close] = ACTIONS(1354), [sym__block_quote_start] = ACTIONS(1354), - [sym__indented_chunk_start] = ACTIONS(61), + [sym__indented_chunk_start] = ACTIONS(1354), [sym_atx_h1_marker] = ACTIONS(1354), [sym_atx_h2_marker] = ACTIONS(1354), [sym_atx_h3_marker] = ACTIONS(1354), @@ -19351,11 +19525,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), [sym__fenced_code_block_start_backtick] = ACTIONS(1354), [sym__fenced_code_block_start_tilde] = ACTIONS(1354), - [sym__blank_line_start] = ACTIONS(81), + [sym__blank_line_start] = ACTIONS(1354), [sym_minus_metadata] = ACTIONS(1354), [sym__pipe_table_start] = ACTIONS(1354), [sym__fenced_div_start] = ACTIONS(1354), @@ -19364,10 +19538,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(126)] = { + [sym_list_marker_parenthesis] = STATE(33), + [sym__list_item_parenthesis] = STATE(130), + [aux_sym__list_parenthesis_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1356), [anon_sym_LBRACE] = ACTIONS(1356), [anon_sym_RBRACE] = ACTIONS(1356), @@ -19413,14 +19587,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_plus] = ACTIONS(1356), [sym__list_marker_star] = ACTIONS(1356), - [sym__list_marker_parenthesis] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(37), [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_plus_dont_interrupt] = ACTIONS(1356), [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), [sym__list_marker_example] = ACTIONS(1356), [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), @@ -19435,10 +19609,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(127)] = { + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(131), + [aux_sym__list_dot_repeat1] = STATE(131), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1358), [anon_sym_LBRACE] = ACTIONS(1358), [anon_sym_RBRACE] = ACTIONS(1358), @@ -19483,16 +19657,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus] = ACTIONS(1358), [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_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1358), [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_dot_dont_interrupt] = ACTIONS(39), [sym__list_marker_example] = ACTIONS(1358), [sym__list_marker_example_dont_interrupt] = ACTIONS(1358), [sym__fenced_code_block_start_backtick] = ACTIONS(1358), @@ -19506,10 +19680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(128)] = { + [sym_list_marker_minus] = STATE(30), + [sym__list_item_minus] = STATE(135), + [aux_sym__list_minus_repeat1] = STATE(135), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), [anon_sym_LBRACE] = ACTIONS(1360), [anon_sym_RBRACE] = ACTIONS(1360), @@ -19554,14 +19728,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(1360), - [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_star] = ACTIONS(1360), [sym__list_marker_parenthesis] = ACTIONS(1360), [sym__list_marker_dot] = ACTIONS(1360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), [sym__list_marker_example] = ACTIONS(1360), @@ -19577,10 +19751,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(129)] = { + [sym__indented_chunk] = STATE(132), + [sym__blank_line] = STATE(132), + [aux_sym_indented_code_block_repeat1] = STATE(132), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), [anon_sym_LBRACE] = ACTIONS(1362), [anon_sym_RBRACE] = ACTIONS(1362), @@ -19617,7 +19791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__soft_line_ending] = ACTIONS(1362), [sym__block_close] = ACTIONS(1362), [sym__block_quote_start] = ACTIONS(1362), - [sym__indented_chunk_start] = ACTIONS(1362), + [sym__indented_chunk_start] = ACTIONS(61), [sym_atx_h1_marker] = ACTIONS(1362), [sym_atx_h2_marker] = ACTIONS(1362), [sym_atx_h3_marker] = ACTIONS(1362), @@ -19629,17 +19803,17 @@ 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(39), + [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(39), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), [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__blank_line_start] = ACTIONS(81), [sym_minus_metadata] = ACTIONS(1362), [sym__pipe_table_start] = ACTIONS(1362), [sym__fenced_div_start] = ACTIONS(1362), @@ -19648,10 +19822,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1362), [sym__inline_math_state_track_marker] = ACTIONS(1362), }, - [STATE(129)] = { + [STATE(130)] = { [sym_list_marker_parenthesis] = STATE(33), - [sym__list_item_parenthesis] = STATE(135), - [aux_sym__list_parenthesis_repeat1] = STATE(135), + [sym__list_item_parenthesis] = STATE(130), + [aux_sym__list_parenthesis_repeat1] = STATE(130), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1364), [anon_sym_RBRACE] = ACTIONS(1364), @@ -19699,12 +19873,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_parenthesis] = ACTIONS(1366), [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_parenthesis_dont_interrupt] = ACTIONS(1366), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1364), [sym__list_marker_example] = ACTIONS(1364), [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), @@ -19719,1485 +19893,507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1364), [sym__inline_math_state_track_marker] = ACTIONS(1364), }, - [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(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), + [sym_list_marker_dot] = STATE(32), + [sym__list_item_dot] = STATE(131), + [aux_sym__list_dot_repeat1] = STATE(131), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_close] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(1369), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(1369), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym__fenced_div_end] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), }, [STATE(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), + [sym__indented_chunk] = STATE(132), + [sym__blank_line] = STATE(132), + [aux_sym_indented_code_block_repeat1] = STATE(132), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [sym__word] = ACTIONS(1374), + [sym__soft_line_ending] = ACTIONS(1374), + [sym__block_close] = ACTIONS(1374), + [sym__block_quote_start] = ACTIONS(1374), + [sym__indented_chunk_start] = ACTIONS(1376), + [sym_atx_h1_marker] = ACTIONS(1374), + [sym_atx_h2_marker] = ACTIONS(1374), + [sym_atx_h3_marker] = ACTIONS(1374), + [sym_atx_h4_marker] = ACTIONS(1374), + [sym_atx_h5_marker] = ACTIONS(1374), + [sym_atx_h6_marker] = ACTIONS(1374), + [sym__thematic_break] = ACTIONS(1374), + [sym__list_marker_minus] = ACTIONS(1374), + [sym__list_marker_plus] = ACTIONS(1374), + [sym__list_marker_star] = ACTIONS(1374), + [sym__list_marker_parenthesis] = ACTIONS(1374), + [sym__list_marker_dot] = ACTIONS(1374), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_example] = ACTIONS(1374), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1374), + [sym__fenced_code_block_start_backtick] = ACTIONS(1374), + [sym__fenced_code_block_start_tilde] = ACTIONS(1374), + [sym__blank_line_start] = ACTIONS(1379), + [sym_minus_metadata] = ACTIONS(1374), + [sym__pipe_table_start] = ACTIONS(1374), + [sym__fenced_div_start] = ACTIONS(1374), + [sym__fenced_div_end] = ACTIONS(1374), + [sym_ref_id_specifier] = ACTIONS(1374), + [sym__display_math_state_track_marker] = ACTIONS(1374), + [sym__inline_math_state_track_marker] = ACTIONS(1374), }, [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), + [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_continuation] = ACTIONS(1384), + [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_setext_h1_underline] = ACTIONS(1382), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym__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(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(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] = STATE(31), + [sym__list_item_star] = STATE(134), + [aux_sym__list_star_repeat1] = STATE(134), + [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(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_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(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), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_example] = ACTIONS(1386), + [sym__list_marker_example_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(1386), + [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(135)] = { + [sym_list_marker_minus] = STATE(30), + [sym__list_item_minus] = STATE(135), + [aux_sym__list_minus_repeat1] = STATE(135), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_BSLASH] = ACTIONS(1391), + [anon_sym_RBRACK] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym__] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [sym__word] = ACTIONS(1391), + [sym__soft_line_ending] = ACTIONS(1391), + [sym__block_close] = ACTIONS(1391), + [sym__block_quote_start] = ACTIONS(1391), + [sym__indented_chunk_start] = ACTIONS(1391), + [sym_atx_h1_marker] = ACTIONS(1391), + [sym_atx_h2_marker] = ACTIONS(1391), + [sym_atx_h3_marker] = ACTIONS(1391), + [sym_atx_h4_marker] = ACTIONS(1391), + [sym_atx_h5_marker] = ACTIONS(1391), + [sym_atx_h6_marker] = ACTIONS(1391), + [sym__thematic_break] = ACTIONS(1391), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1391), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1391), + [sym__list_marker_dot] = ACTIONS(1391), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_example] = ACTIONS(1391), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1391), + [sym__fenced_code_block_start_backtick] = ACTIONS(1391), + [sym__fenced_code_block_start_tilde] = ACTIONS(1391), + [sym__blank_line_start] = ACTIONS(1391), + [sym_minus_metadata] = ACTIONS(1391), + [sym__pipe_table_start] = ACTIONS(1391), + [sym__fenced_div_start] = ACTIONS(1391), + [sym__fenced_div_end] = ACTIONS(1391), + [sym_ref_id_specifier] = ACTIONS(1391), + [sym__display_math_state_track_marker] = ACTIONS(1391), + [sym__inline_math_state_track_marker] = ACTIONS(1391), }, [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(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_close] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), + [sym__list_marker_star] = ACTIONS(1396), + [sym__list_marker_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), [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(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(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(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), - [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(1408), - [sym_setext_h2_underline] = ACTIONS(1410), - [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__fenced_div_end] = ACTIONS(1406), - [sym_ref_id_specifier] = ACTIONS(1406), - [sym__display_math_state_track_marker] = ACTIONS(1406), - [sym__inline_math_state_track_marker] = ACTIONS(1406), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym__fenced_div_end] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), }, - [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(137)] = { + [sym_list_marker_plus] = STATE(29), + [sym__list_item_plus] = STATE(137), + [aux_sym__list_plus_repeat1] = STATE(137), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_close] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1403), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1401), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym__fenced_div_end] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), }, - [STATE(144)] = { + [STATE(138)] = { [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(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(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(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(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(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(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(150)] = { - [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__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(151)] = { + [sym__list_item_plus] = STATE(140), + [aux_sym__list_plus_repeat1] = STATE(140), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1350), [anon_sym_LBRACE] = ACTIONS(1350), [anon_sym_RBRACE] = ACTIONS(1350), @@ -21233,7 +20429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21242,16 +20437,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_plus] = ACTIONS(33), [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_plus_dont_interrupt] = ACTIONS(33), [sym__list_marker_star_dont_interrupt] = ACTIONS(1350), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1350), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1350), @@ -21267,150 +20460,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(139)] = { + [sym_list_marker_star] = STATE(3), + [sym__list_item_star] = STATE(139), + [aux_sym__list_star_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(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(1388), + [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(1388), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_example] = ACTIONS(1386), + [sym__list_marker_example_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(1386), + [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(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(140)] = { + [sym_list_marker_plus] = STATE(23), + [sym__list_item_plus] = STATE(140), + [aux_sym__list_plus_repeat1] = STATE(140), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_close] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1403), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1401), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), }, - [STATE(154)] = { - [sym_list_marker_dot] = STATE(26), - [sym__list_item_dot] = STATE(138), - [aux_sym__list_dot_repeat1] = STATE(138), + [STATE(141)] = { + [sym__indented_chunk] = STATE(144), + [sym__blank_line] = STATE(144), + [aux_sym_indented_code_block_repeat1] = STATE(144), + [ts_builtin_sym_end] = ACTIONS(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(15), + [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(1352), + [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(1352), + [sym__list_marker_example] = ACTIONS(1352), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1352), + [sym__fenced_code_block_start_backtick] = ACTIONS(1352), + [sym__fenced_code_block_start_tilde] = ACTIONS(1352), + [sym__blank_line_start] = ACTIONS(47), + [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(142)] = { + [sym__indented_chunk] = STATE(142), + [sym__blank_line] = STATE(142), + [aux_sym_indented_code_block_repeat1] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(1374), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [sym__word] = ACTIONS(1374), + [sym__soft_line_ending] = ACTIONS(1374), + [sym__block_quote_start] = ACTIONS(1374), + [sym__indented_chunk_start] = ACTIONS(1406), + [sym_atx_h1_marker] = ACTIONS(1374), + [sym_atx_h2_marker] = ACTIONS(1374), + [sym_atx_h3_marker] = ACTIONS(1374), + [sym_atx_h4_marker] = ACTIONS(1374), + [sym_atx_h5_marker] = ACTIONS(1374), + [sym_atx_h6_marker] = ACTIONS(1374), + [sym__thematic_break] = ACTIONS(1374), + [sym__list_marker_minus] = ACTIONS(1374), + [sym__list_marker_plus] = ACTIONS(1374), + [sym__list_marker_star] = ACTIONS(1374), + [sym__list_marker_parenthesis] = ACTIONS(1374), + [sym__list_marker_dot] = ACTIONS(1374), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_example] = ACTIONS(1374), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1374), + [sym__fenced_code_block_start_backtick] = ACTIONS(1374), + [sym__fenced_code_block_start_tilde] = ACTIONS(1374), + [sym__blank_line_start] = ACTIONS(1409), + [sym_minus_metadata] = ACTIONS(1374), + [sym__pipe_table_start] = ACTIONS(1374), + [sym__fenced_div_start] = ACTIONS(1374), + [sym_ref_id_specifier] = ACTIONS(1374), + [sym__display_math_state_track_marker] = ACTIONS(1374), + [sym__inline_math_state_track_marker] = ACTIONS(1374), + }, + [STATE(143)] = { + [sym_list_marker_minus] = STATE(24), + [sym__list_item_minus] = STATE(143), + [aux_sym__list_minus_repeat1] = STATE(143), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_BSLASH] = ACTIONS(1391), + [anon_sym_RBRACK] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym__] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [sym__word] = ACTIONS(1391), + [sym__soft_line_ending] = ACTIONS(1391), + [sym__block_close] = ACTIONS(1391), + [sym__block_quote_start] = ACTIONS(1391), + [sym__indented_chunk_start] = ACTIONS(1391), + [sym_atx_h1_marker] = ACTIONS(1391), + [sym_atx_h2_marker] = ACTIONS(1391), + [sym_atx_h3_marker] = ACTIONS(1391), + [sym_atx_h4_marker] = ACTIONS(1391), + [sym_atx_h5_marker] = ACTIONS(1391), + [sym_atx_h6_marker] = ACTIONS(1391), + [sym__thematic_break] = ACTIONS(1391), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1391), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1391), + [sym__list_marker_dot] = ACTIONS(1391), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_example] = ACTIONS(1391), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1391), + [sym__fenced_code_block_start_backtick] = ACTIONS(1391), + [sym__fenced_code_block_start_tilde] = ACTIONS(1391), + [sym__blank_line_start] = ACTIONS(1391), + [sym_minus_metadata] = ACTIONS(1391), + [sym__pipe_table_start] = ACTIONS(1391), + [sym__fenced_div_start] = ACTIONS(1391), + [sym_ref_id_specifier] = ACTIONS(1391), + [sym__display_math_state_track_marker] = ACTIONS(1391), + [sym__inline_math_state_track_marker] = ACTIONS(1391), + }, + [STATE(144)] = { + [sym__indented_chunk] = STATE(142), + [sym__blank_line] = STATE(142), + [aux_sym_indented_code_block_repeat1] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(1362), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1362), [anon_sym_LBRACE] = ACTIONS(1362), [anon_sym_RBRACE] = ACTIONS(1362), @@ -21445,9 +20849,8 @@ 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(1362), + [sym__indented_chunk_start] = ACTIONS(15), [sym_atx_h1_marker] = ACTIONS(1362), [sym_atx_h2_marker] = ACTIONS(1362), [sym_atx_h3_marker] = ACTIONS(1362), @@ -21459,17 +20862,17 @@ 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(39), + [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(39), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1362), [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__blank_line_start] = ACTIONS(47), [sym_minus_metadata] = ACTIONS(1362), [sym__pipe_table_start] = ACTIONS(1362), [sym__fenced_div_start] = ACTIONS(1362), @@ -21477,10 +20880,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1362), [sym__inline_math_state_track_marker] = ACTIONS(1362), }, - [STATE(155)] = { - [sym_list_marker_parenthesis] = STATE(27), - [sym__list_item_parenthesis] = STATE(170), - [aux_sym__list_parenthesis_repeat1] = STATE(170), + [STATE(145)] = { + [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_continuation] = ACTIONS(1412), + [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_setext_h1_underline] = ACTIONS(1382), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym_ref_id_specifier] = ACTIONS(1382), + [sym__display_math_state_track_marker] = ACTIONS(1382), + [sym__inline_math_state_track_marker] = ACTIONS(1382), + }, + [STATE(146)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_close] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym_setext_h1_underline] = ACTIONS(1414), + [sym_setext_h2_underline] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym__fenced_div_end] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), + }, + [STATE(147)] = { + [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_continuation] = ACTIONS(1416), + [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_setext_h1_underline] = ACTIONS(1382), + [sym_setext_h2_underline] = 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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym_ref_id_specifier] = ACTIONS(1382), + [sym__display_math_state_track_marker] = ACTIONS(1382), + [sym__inline_math_state_track_marker] = ACTIONS(1382), + }, + [STATE(148)] = { + [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_COLON] = 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_continuation] = ACTIONS(1418), + [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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym__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(149)] = { + [sym__indented_chunk] = STATE(149), + [sym__blank_line] = STATE(149), + [aux_sym_indented_code_block_repeat1] = STATE(149), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_BANG] = ACTIONS(1374), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1374), + [anon_sym_PERCENT] = ACTIONS(1374), + [anon_sym_AMP] = ACTIONS(1374), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_STAR] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_DASH] = ACTIONS(1374), + [anon_sym_DOT] = ACTIONS(1374), + [anon_sym_SLASH] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_AT] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_BSLASH] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_CARET] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1374), + [anon_sym_BQUOTE] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1374), + [anon_sym_TILDE] = ACTIONS(1374), + [sym__word] = ACTIONS(1374), + [sym__soft_line_ending] = ACTIONS(1374), + [sym__block_close] = ACTIONS(1374), + [sym__block_quote_start] = ACTIONS(1374), + [sym__indented_chunk_start] = ACTIONS(1420), + [sym_atx_h1_marker] = ACTIONS(1374), + [sym_atx_h2_marker] = ACTIONS(1374), + [sym_atx_h3_marker] = ACTIONS(1374), + [sym_atx_h4_marker] = ACTIONS(1374), + [sym_atx_h5_marker] = ACTIONS(1374), + [sym_atx_h6_marker] = ACTIONS(1374), + [sym__thematic_break] = ACTIONS(1374), + [sym__list_marker_minus] = ACTIONS(1374), + [sym__list_marker_plus] = ACTIONS(1374), + [sym__list_marker_star] = ACTIONS(1374), + [sym__list_marker_parenthesis] = ACTIONS(1374), + [sym__list_marker_dot] = ACTIONS(1374), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1374), + [sym__list_marker_example] = ACTIONS(1374), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1374), + [sym__fenced_code_block_start_backtick] = ACTIONS(1374), + [sym__fenced_code_block_start_tilde] = ACTIONS(1374), + [sym__blank_line_start] = ACTIONS(1423), + [sym_minus_metadata] = ACTIONS(1374), + [sym__pipe_table_start] = ACTIONS(1374), + [sym__fenced_div_start] = ACTIONS(1374), + [sym_ref_id_specifier] = ACTIONS(1374), + [sym__display_math_state_track_marker] = ACTIONS(1374), + [sym__inline_math_state_track_marker] = ACTIONS(1374), + }, + [STATE(150)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_close] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym_setext_h1_underline] = ACTIONS(1426), + [sym_setext_h2_underline] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym__fenced_div_end] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), + }, + [STATE(151)] = { + [sym_list_marker_dot] = STATE(4), + [sym__list_item_dot] = STATE(151), + [aux_sym__list_dot_repeat1] = STATE(151), + [ts_builtin_sym_end] = ACTIONS(1369), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(1369), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(1369), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), + }, + [STATE(152)] = { + [sym_list_marker_parenthesis] = STATE(5), + [sym__list_item_parenthesis] = STATE(152), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(1364), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1364), [anon_sym_RBRACE] = ACTIONS(1364), @@ -21515,7 +21409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -21528,12 +21421,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_parenthesis] = ACTIONS(1366), [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_parenthesis_dont_interrupt] = ACTIONS(1366), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1364), [sym__list_marker_example] = ACTIONS(1364), [sym__list_marker_example_dont_interrupt] = ACTIONS(1364), @@ -21547,360 +21440,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1364), [sym__inline_math_state_track_marker] = ACTIONS(1364), }, - [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(153)] = { + [sym_list_marker_star] = STATE(25), + [sym__list_item_star] = STATE(153), + [aux_sym__list_star_repeat1] = STATE(153), + [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(1388), + [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(1388), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), + [sym__list_marker_example] = ACTIONS(1386), + [sym__list_marker_example_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(1386), + [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(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(154)] = { + [sym__indented_chunk] = STATE(149), + [sym__blank_line] = STATE(149), + [aux_sym_indented_code_block_repeat1] = STATE(149), + [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(97), + [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__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(117), + [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(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), + [STATE(155)] = { + [sym_list_marker_dot] = STATE(26), + [sym__list_item_dot] = STATE(155), + [aux_sym__list_dot_repeat1] = STATE(155), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1369), + [anon_sym_BANG] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_DOLLAR] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_AT] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_BSLASH] = ACTIONS(1369), + [anon_sym_RBRACK] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1369), + [anon_sym_BQUOTE] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1369), + [sym__word] = ACTIONS(1369), + [sym__soft_line_ending] = ACTIONS(1369), + [sym__block_close] = ACTIONS(1369), + [sym__block_quote_start] = ACTIONS(1369), + [sym__indented_chunk_start] = ACTIONS(1369), + [sym_atx_h1_marker] = ACTIONS(1369), + [sym_atx_h2_marker] = ACTIONS(1369), + [sym_atx_h3_marker] = ACTIONS(1369), + [sym_atx_h4_marker] = ACTIONS(1369), + [sym_atx_h5_marker] = ACTIONS(1369), + [sym_atx_h6_marker] = ACTIONS(1369), + [sym__thematic_break] = ACTIONS(1369), + [sym__list_marker_minus] = ACTIONS(1369), + [sym__list_marker_plus] = ACTIONS(1369), + [sym__list_marker_star] = ACTIONS(1369), + [sym__list_marker_parenthesis] = ACTIONS(1369), + [sym__list_marker_dot] = ACTIONS(1371), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1369), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1371), + [sym__list_marker_example] = ACTIONS(1369), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1369), + [sym__fenced_code_block_start_backtick] = ACTIONS(1369), + [sym__fenced_code_block_start_tilde] = ACTIONS(1369), + [sym__blank_line_start] = ACTIONS(1369), + [sym_minus_metadata] = ACTIONS(1369), + [sym__pipe_table_start] = ACTIONS(1369), + [sym__fenced_div_start] = ACTIONS(1369), + [sym_ref_id_specifier] = ACTIONS(1369), + [sym__display_math_state_track_marker] = ACTIONS(1369), + [sym__inline_math_state_track_marker] = ACTIONS(1369), + }, + [STATE(156)] = { + [sym_list_marker_plus] = STATE(35), + [sym__list_item_plus] = STATE(171), + [aux_sym__list_plus_repeat1] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(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_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(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_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(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(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(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), + [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(161)] = { - [sym_list_marker_star] = STATE(35), - [sym__list_item_star] = STATE(140), - [aux_sym__list_star_repeat1] = STATE(140), + [STATE(157)] = { + [sym_list_marker_minus] = STATE(18), + [sym__list_item_minus] = STATE(172), + [aux_sym__list_minus_repeat1] = STATE(172), [ts_builtin_sym_end] = ACTIONS(1360), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1360), [anon_sym_LBRACE] = ACTIONS(1360), @@ -21945,14 +21768,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_minus] = ACTIONS(31), [sym__list_marker_plus] = ACTIONS(1360), - [sym__list_marker_star] = ACTIONS(35), + [sym__list_marker_star] = ACTIONS(1360), [sym__list_marker_parenthesis] = ACTIONS(1360), [sym__list_marker_dot] = ACTIONS(1360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(35), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1360), [sym__list_marker_dot_dont_interrupt] = ACTIONS(1360), [sym__list_marker_example] = ACTIONS(1360), @@ -21967,220 +21790,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1360), [sym__inline_math_state_track_marker] = ACTIONS(1360), }, - [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), - }, - [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), + [STATE(158)] = { + [sym_list_marker_star] = STATE(3), + [sym__list_item_star] = STATE(139), + [aux_sym__list_star_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1348), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1348), [anon_sym_RBRACE] = ACTIONS(1348), @@ -22215,9 +21829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__indented_chunk_start] = ACTIONS(1348), [sym_atx_h1_marker] = ACTIONS(1348), [sym_atx_h2_marker] = ACTIONS(1348), [sym_atx_h3_marker] = ACTIONS(1348), @@ -22227,19 +21840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_star] = ACTIONS(35), [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_star_dont_interrupt] = ACTIONS(35), [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__blank_line_start] = ACTIONS(1348), [sym_minus_metadata] = ACTIONS(1348), [sym__pipe_table_start] = ACTIONS(1348), [sym__fenced_div_start] = ACTIONS(1348), @@ -22247,443 +21860,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(159)] = { + [sym_list_marker_dot] = STATE(4), + [sym__list_item_dot] = STATE(151), + [aux_sym__list_dot_repeat1] = STATE(151), + [ts_builtin_sym_end] = ACTIONS(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(1358), + [sym__list_marker_plus] = ACTIONS(1358), + [sym__list_marker_star] = ACTIONS(1358), + [sym__list_marker_parenthesis] = ACTIONS(1358), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1358), + [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(39), + [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(160)] = { + [sym_list_marker_parenthesis] = STATE(5), + [sym__list_item_parenthesis] = STATE(152), + [aux_sym__list_parenthesis_repeat1] = STATE(152), + [ts_builtin_sym_end] = ACTIONS(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(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_example] = ACTIONS(1356), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1356), + [sym__fenced_code_block_start_backtick] = ACTIONS(1356), + [sym__fenced_code_block_start_tilde] = ACTIONS(1356), + [sym__blank_line_start] = ACTIONS(1356), + [sym_minus_metadata] = ACTIONS(1356), + [sym__pipe_table_start] = ACTIONS(1356), + [sym__fenced_div_start] = ACTIONS(1356), + [sym_ref_id_specifier] = ACTIONS(1356), + [sym__display_math_state_track_marker] = ACTIONS(1356), + [sym__inline_math_state_track_marker] = ACTIONS(1356), + }, + [STATE(161)] = { + [sym_list_marker_example] = STATE(6), + [sym__list_item_example] = STATE(173), + [aux_sym__list_example_repeat1] = STATE(173), + [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(1354), + [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(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), + [sym__fenced_code_block_start_backtick] = ACTIONS(1354), + [sym__fenced_code_block_start_tilde] = ACTIONS(1354), + [sym__blank_line_start] = ACTIONS(1354), + [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(162)] = { + [sym_list_marker_parenthesis] = STATE(27), + [sym__list_item_parenthesis] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [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(1366), + [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(1366), + [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(163)] = { + [sym__indented_chunk] = STATE(154), + [sym__blank_line] = STATE(154), + [aux_sym_indented_code_block_repeat1] = STATE(154), + [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(97), + [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(1352), + [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(1352), + [sym__list_marker_example] = ACTIONS(1352), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1352), + [sym__fenced_code_block_start_backtick] = ACTIONS(1352), + [sym__fenced_code_block_start_tilde] = ACTIONS(1352), + [sym__blank_line_start] = ACTIONS(117), + [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(164)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym_setext_h1_underline] = ACTIONS(1430), + [sym_setext_h2_underline] = ACTIONS(1432), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym__fenced_div_end] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(165)] = { + [sym_list_marker_minus] = STATE(24), + [sym__list_item_minus] = STATE(143), + [aux_sym__list_minus_repeat1] = STATE(143), + [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(31), + [sym__list_marker_plus] = ACTIONS(1360), + [sym__list_marker_star] = ACTIONS(1360), + [sym__list_marker_parenthesis] = ACTIONS(1360), + [sym__list_marker_dot] = ACTIONS(1360), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(31), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1360), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1360), + [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(166)] = { + [sym_list_marker_star] = STATE(25), + [sym__list_item_star] = STATE(153), + [aux_sym__list_star_repeat1] = STATE(153), + [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), @@ -22706,8 +22388,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(15), + [sym__indented_chunk_start] = ACTIONS(1348), [sym_atx_h1_marker] = ACTIONS(1348), [sym_atx_h2_marker] = ACTIONS(1348), [sym_atx_h3_marker] = ACTIONS(1348), @@ -22717,19 +22400,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_star] = ACTIONS(35), [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_star_dont_interrupt] = ACTIONS(35), [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__blank_line_start] = ACTIONS(1348), [sym_minus_metadata] = ACTIONS(1348), [sym__pipe_table_start] = ACTIONS(1348), [sym__fenced_div_start] = ACTIONS(1348), @@ -22737,11 +22420,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(167)] = { + [sym_list_marker_dot] = STATE(26), + [sym__list_item_dot] = STATE(155), + [aux_sym__list_dot_repeat1] = STATE(155), + [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(1358), + [sym__list_marker_plus] = ACTIONS(1358), + [sym__list_marker_star] = ACTIONS(1358), + [sym__list_marker_parenthesis] = ACTIONS(1358), + [sym__list_marker_dot] = ACTIONS(39), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1358), + [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(39), + [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)] = { + [sym_list_marker_parenthesis] = STATE(27), + [sym__list_item_parenthesis] = STATE(162), + [aux_sym__list_parenthesis_repeat1] = STATE(162), + [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(1356), + [sym__list_marker_star] = ACTIONS(1356), + [sym__list_marker_parenthesis] = ACTIONS(37), + [sym__list_marker_dot] = ACTIONS(1356), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1356), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(37), + [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(169)] = { + [sym_list_marker_example] = STATE(28), + [sym__list_item_example] = STATE(170), + [aux_sym__list_example_repeat1] = STATE(170), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1354), [anon_sym_LBRACE] = ACTIONS(1354), [anon_sym_RBRACE] = ACTIONS(1354), @@ -22776,8 +22598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(15), + [sym__indented_chunk_start] = ACTIONS(1354), [sym_atx_h1_marker] = ACTIONS(1354), [sym_atx_h2_marker] = ACTIONS(1354), [sym_atx_h3_marker] = ACTIONS(1354), @@ -22795,11 +22618,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__list_marker_example] = ACTIONS(41), + [sym__list_marker_example_dont_interrupt] = ACTIONS(41), [sym__fenced_code_block_start_backtick] = ACTIONS(1354), [sym__fenced_code_block_start_tilde] = ACTIONS(1354), - [sym__blank_line_start] = ACTIONS(47), + [sym__blank_line_start] = ACTIONS(1354), [sym_minus_metadata] = ACTIONS(1354), [sym__pipe_table_start] = ACTIONS(1354), [sym__fenced_div_start] = ACTIONS(1354), @@ -22807,1802 +22630,1943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(170)] = { + [sym_list_marker_example] = STATE(28), + [sym__list_item_example] = STATE(170), + [aux_sym__list_example_repeat1] = STATE(170), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_close] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), + [sym__list_marker_star] = ACTIONS(1396), + [sym__list_marker_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1398), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1398), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), }, - [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(171)] = { + [sym_list_marker_plus] = STATE(35), + [sym__list_item_plus] = STATE(171), + [aux_sym__list_plus_repeat1] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(1401), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1401), + [anon_sym_LBRACE] = ACTIONS(1401), + [anon_sym_RBRACE] = ACTIONS(1401), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_DQUOTE] = ACTIONS(1401), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_DOLLAR] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1401), + [anon_sym_RPAREN] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1401), + [anon_sym_AT] = ACTIONS(1401), + [anon_sym_LBRACK] = ACTIONS(1401), + [anon_sym_BSLASH] = ACTIONS(1401), + [anon_sym_RBRACK] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym__] = ACTIONS(1401), + [anon_sym_BQUOTE] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_TILDE] = ACTIONS(1401), + [sym__word] = ACTIONS(1401), + [sym__soft_line_ending] = ACTIONS(1401), + [sym__block_quote_start] = ACTIONS(1401), + [sym__indented_chunk_start] = ACTIONS(1401), + [sym_atx_h1_marker] = ACTIONS(1401), + [sym_atx_h2_marker] = ACTIONS(1401), + [sym_atx_h3_marker] = ACTIONS(1401), + [sym_atx_h4_marker] = ACTIONS(1401), + [sym_atx_h5_marker] = ACTIONS(1401), + [sym_atx_h6_marker] = ACTIONS(1401), + [sym__thematic_break] = ACTIONS(1401), + [sym__list_marker_minus] = ACTIONS(1401), + [sym__list_marker_plus] = ACTIONS(1403), + [sym__list_marker_star] = ACTIONS(1401), + [sym__list_marker_parenthesis] = ACTIONS(1401), + [sym__list_marker_dot] = ACTIONS(1401), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1403), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1401), + [sym__list_marker_example] = ACTIONS(1401), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1401), + [sym__fenced_code_block_start_backtick] = ACTIONS(1401), + [sym__fenced_code_block_start_tilde] = ACTIONS(1401), + [sym__blank_line_start] = ACTIONS(1401), + [sym_minus_metadata] = ACTIONS(1401), + [sym__pipe_table_start] = ACTIONS(1401), + [sym__fenced_div_start] = ACTIONS(1401), + [sym_ref_id_specifier] = ACTIONS(1401), + [sym__display_math_state_track_marker] = ACTIONS(1401), + [sym__inline_math_state_track_marker] = ACTIONS(1401), }, - [STATE(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(172)] = { + [sym_list_marker_minus] = STATE(18), + [sym__list_item_minus] = STATE(172), + [aux_sym__list_minus_repeat1] = STATE(172), + [ts_builtin_sym_end] = ACTIONS(1391), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_SQUOTE] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(1391), + [anon_sym_POUND] = ACTIONS(1391), + [anon_sym_DOLLAR] = ACTIONS(1391), + [anon_sym_PERCENT] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1391), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_STAR] = ACTIONS(1391), + [anon_sym_PLUS] = ACTIONS(1391), + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_DASH] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1391), + [anon_sym_GT] = ACTIONS(1391), + [anon_sym_QMARK] = ACTIONS(1391), + [anon_sym_AT] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_BSLASH] = ACTIONS(1391), + [anon_sym_RBRACK] = ACTIONS(1391), + [anon_sym_CARET] = ACTIONS(1391), + [anon_sym__] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1391), + [sym__word] = ACTIONS(1391), + [sym__soft_line_ending] = ACTIONS(1391), + [sym__block_quote_start] = ACTIONS(1391), + [sym__indented_chunk_start] = ACTIONS(1391), + [sym_atx_h1_marker] = ACTIONS(1391), + [sym_atx_h2_marker] = ACTIONS(1391), + [sym_atx_h3_marker] = ACTIONS(1391), + [sym_atx_h4_marker] = ACTIONS(1391), + [sym_atx_h5_marker] = ACTIONS(1391), + [sym_atx_h6_marker] = ACTIONS(1391), + [sym__thematic_break] = ACTIONS(1391), + [sym__list_marker_minus] = ACTIONS(1393), + [sym__list_marker_plus] = ACTIONS(1391), + [sym__list_marker_star] = ACTIONS(1391), + [sym__list_marker_parenthesis] = ACTIONS(1391), + [sym__list_marker_dot] = ACTIONS(1391), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1393), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1391), + [sym__list_marker_example] = ACTIONS(1391), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1391), + [sym__fenced_code_block_start_backtick] = ACTIONS(1391), + [sym__fenced_code_block_start_tilde] = ACTIONS(1391), + [sym__blank_line_start] = ACTIONS(1391), + [sym_minus_metadata] = ACTIONS(1391), + [sym__pipe_table_start] = ACTIONS(1391), + [sym__fenced_div_start] = ACTIONS(1391), + [sym_ref_id_specifier] = ACTIONS(1391), + [sym__display_math_state_track_marker] = ACTIONS(1391), + [sym__inline_math_state_track_marker] = ACTIONS(1391), }, - [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(173)] = { + [sym_list_marker_example] = STATE(6), + [sym__list_item_example] = STATE(173), + [aux_sym__list_example_repeat1] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(1396), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_COMMA] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1396), + [anon_sym_AT] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_BSLASH] = ACTIONS(1396), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym__] = ACTIONS(1396), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [sym__word] = ACTIONS(1396), + [sym__soft_line_ending] = ACTIONS(1396), + [sym__block_quote_start] = ACTIONS(1396), + [sym__indented_chunk_start] = ACTIONS(1396), + [sym_atx_h1_marker] = ACTIONS(1396), + [sym_atx_h2_marker] = ACTIONS(1396), + [sym_atx_h3_marker] = ACTIONS(1396), + [sym_atx_h4_marker] = ACTIONS(1396), + [sym_atx_h5_marker] = ACTIONS(1396), + [sym_atx_h6_marker] = ACTIONS(1396), + [sym__thematic_break] = ACTIONS(1396), + [sym__list_marker_minus] = ACTIONS(1396), + [sym__list_marker_plus] = ACTIONS(1396), + [sym__list_marker_star] = ACTIONS(1396), + [sym__list_marker_parenthesis] = ACTIONS(1396), + [sym__list_marker_dot] = ACTIONS(1396), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1396), + [sym__list_marker_example] = ACTIONS(1398), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1398), + [sym__fenced_code_block_start_backtick] = ACTIONS(1396), + [sym__fenced_code_block_start_tilde] = ACTIONS(1396), + [sym__blank_line_start] = ACTIONS(1396), + [sym_minus_metadata] = ACTIONS(1396), + [sym__pipe_table_start] = ACTIONS(1396), + [sym__fenced_div_start] = ACTIONS(1396), + [sym_ref_id_specifier] = ACTIONS(1396), + [sym__display_math_state_track_marker] = ACTIONS(1396), + [sym__inline_math_state_track_marker] = ACTIONS(1396), + }, + [STATE(174)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym__block_close] = ACTIONS(1434), + [sym_block_continuation] = ACTIONS(1436), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym__fenced_div_end] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), + }, + [STATE(175)] = { + [ts_builtin_sym_end] = ACTIONS(1414), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym_setext_h1_underline] = ACTIONS(1414), + [sym_setext_h2_underline] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), + }, + [STATE(176)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1440), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym__fenced_div_end] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(177)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1444), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym__fenced_div_end] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(178)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym__block_close] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1448), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym__fenced_div_end] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), }, [STATE(179)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [sym__word] = ACTIONS(1450), + [sym__soft_line_ending] = ACTIONS(1450), + [sym__block_close] = ACTIONS(1450), + [sym_block_continuation] = ACTIONS(1452), + [sym__block_quote_start] = ACTIONS(1450), + [sym__indented_chunk_start] = ACTIONS(1450), + [sym_atx_h1_marker] = ACTIONS(1450), + [sym_atx_h2_marker] = ACTIONS(1450), + [sym_atx_h3_marker] = ACTIONS(1450), + [sym_atx_h4_marker] = ACTIONS(1450), + [sym_atx_h5_marker] = ACTIONS(1450), + [sym_atx_h6_marker] = ACTIONS(1450), + [sym__thematic_break] = ACTIONS(1450), + [sym__list_marker_minus] = ACTIONS(1450), + [sym__list_marker_plus] = ACTIONS(1450), + [sym__list_marker_star] = ACTIONS(1450), + [sym__list_marker_parenthesis] = ACTIONS(1450), + [sym__list_marker_dot] = ACTIONS(1450), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_example] = ACTIONS(1450), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), + [sym__fenced_code_block_start_backtick] = ACTIONS(1450), + [sym__fenced_code_block_start_tilde] = ACTIONS(1450), + [sym__blank_line_start] = ACTIONS(1450), + [sym_minus_metadata] = ACTIONS(1450), + [sym__pipe_table_start] = ACTIONS(1450), + [sym__fenced_div_start] = ACTIONS(1450), + [sym__fenced_div_end] = ACTIONS(1450), + [sym_ref_id_specifier] = ACTIONS(1450), + [sym__display_math_state_track_marker] = ACTIONS(1450), + [sym__inline_math_state_track_marker] = ACTIONS(1450), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1456), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym__fenced_div_end] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1460), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym__fenced_div_end] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [sym__word] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym__block_close] = ACTIONS(1462), + [sym_block_continuation] = ACTIONS(1464), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_example] = ACTIONS(1462), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym_minus_metadata] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + [sym__fenced_div_start] = ACTIONS(1462), + [sym__fenced_div_end] = ACTIONS(1462), + [sym_ref_id_specifier] = ACTIONS(1462), + [sym__display_math_state_track_marker] = ACTIONS(1462), + [sym__inline_math_state_track_marker] = ACTIONS(1462), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym__] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [sym__word] = ACTIONS(1466), + [sym__soft_line_ending] = ACTIONS(1466), + [sym__block_close] = ACTIONS(1466), + [sym_block_continuation] = ACTIONS(1468), + [sym__block_quote_start] = ACTIONS(1466), + [sym__indented_chunk_start] = ACTIONS(1466), + [sym_atx_h1_marker] = ACTIONS(1466), + [sym_atx_h2_marker] = ACTIONS(1466), + [sym_atx_h3_marker] = ACTIONS(1466), + [sym_atx_h4_marker] = ACTIONS(1466), + [sym_atx_h5_marker] = ACTIONS(1466), + [sym_atx_h6_marker] = ACTIONS(1466), + [sym__thematic_break] = ACTIONS(1466), + [sym__list_marker_minus] = ACTIONS(1466), + [sym__list_marker_plus] = ACTIONS(1466), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1466), + [sym__list_marker_dot] = ACTIONS(1466), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_example] = ACTIONS(1466), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1466), + [sym__fenced_code_block_start_backtick] = ACTIONS(1466), + [sym__fenced_code_block_start_tilde] = ACTIONS(1466), + [sym__blank_line_start] = ACTIONS(1466), + [sym_minus_metadata] = ACTIONS(1466), + [sym__pipe_table_start] = ACTIONS(1466), + [sym__fenced_div_start] = ACTIONS(1466), + [sym__fenced_div_end] = ACTIONS(1466), + [sym_ref_id_specifier] = ACTIONS(1466), + [sym__display_math_state_track_marker] = ACTIONS(1466), + [sym__inline_math_state_track_marker] = ACTIONS(1466), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), + [sym__block_close] = ACTIONS(1470), + [sym_block_continuation] = ACTIONS(1472), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym__fenced_div_end] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym__block_close] = ACTIONS(1474), + [sym_block_continuation] = ACTIONS(1476), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym__fenced_div_end] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym__block_close] = ACTIONS(1478), + [sym_block_continuation] = ACTIONS(1480), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym__fenced_div_end] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym__block_close] = ACTIONS(1482), + [sym_block_continuation] = ACTIONS(1484), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym__fenced_div_end] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym__block_close] = ACTIONS(1486), + [sym_block_continuation] = ACTIONS(1488), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym__fenced_div_end] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym__block_close] = ACTIONS(1490), + [sym_block_continuation] = ACTIONS(1492), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym__fenced_div_end] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym__fenced_div_end] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), }, [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), + [ts_builtin_sym_end] = ACTIONS(1426), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym_setext_h1_underline] = ACTIONS(1426), + [sym_setext_h2_underline] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), }, [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), + [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_COLON] = 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_continuation] = ACTIONS(1496), + [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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym_ref_id_specifier] = ACTIONS(1382), + [sym__display_math_state_track_marker] = ACTIONS(1382), + [sym__inline_math_state_track_marker] = ACTIONS(1382), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_close] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym_setext_h1_underline] = ACTIONS(1426), + [sym_setext_h2_underline] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_close] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym_setext_h1_underline] = ACTIONS(1414), + [sym_setext_h2_underline] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_close] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym__fenced_div_end] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), }, [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), + [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_COLON] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym__fenced_div_end] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym_setext_h1_underline] = ACTIONS(1500), + [sym_setext_h2_underline] = ACTIONS(1502), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), }, [STATE(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), @@ -24671,7 +24635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1504), [sym__inline_math_state_track_marker] = ACTIONS(1504), }, - [STATE(201)] = { + [STATE(199)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), [anon_sym_LBRACE] = ACTIONS(1508), [anon_sym_RBRACE] = ACTIONS(1508), @@ -24740,688 +24704,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(200)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), [sym_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), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(201)] = { + [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_COLON] = 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_continuation] = ACTIONS(1516), + [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__list_marker_example] = ACTIONS(1382), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1382), + [sym__fenced_code_block_start_backtick] = ACTIONS(1382), + [sym__fenced_code_block_start_tilde] = ACTIONS(1382), + [sym__blank_line_start] = ACTIONS(1382), + [sym_minus_metadata] = ACTIONS(1382), + [sym__pipe_table_start] = ACTIONS(1382), + [sym__fenced_div_start] = ACTIONS(1382), + [sym_ref_id_specifier] = ACTIONS(1382), + [sym__display_math_state_track_marker] = ACTIONS(1382), + [sym__inline_math_state_track_marker] = ACTIONS(1382), + }, + [STATE(202)] = { + [sym__blank_line] = STATE(1090), + [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_COLON] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1520), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_close] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym__fenced_div_end] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1454), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1524), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1434), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym_block_continuation] = ACTIONS(1526), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), }, [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), + [ts_builtin_sym_end] = ACTIONS(1474), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym_block_continuation] = ACTIONS(1528), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), }, [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), + [ts_builtin_sym_end] = ACTIONS(1478), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym_block_continuation] = ACTIONS(1530), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), }, [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), + [ts_builtin_sym_end] = ACTIONS(1458), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1532), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1426), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), }, [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), @@ -25489,7 +25455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1534), [sym__inline_math_state_track_marker] = ACTIONS(1534), }, - [STATE(213)] = { + [STATE(211)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(1536), [anon_sym_RBRACE] = ACTIONS(1536), @@ -25557,7 +25523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1536), [sym__inline_math_state_track_marker] = ACTIONS(1536), }, - [STATE(214)] = { + [STATE(212)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1538), [anon_sym_LBRACE] = ACTIONS(1538), [anon_sym_RBRACE] = ACTIONS(1538), @@ -25625,347 +25591,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1538), [sym__inline_math_state_track_marker] = ACTIONS(1538), }, + [STATE(213)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym__block_close] = ACTIONS(1478), + [sym_block_continuation] = ACTIONS(1540), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), + }, + [STATE(214)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym__block_close] = ACTIONS(1482), + [sym_block_continuation] = ACTIONS(1542), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), + }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym__block_close] = ACTIONS(1486), + [sym_block_continuation] = ACTIONS(1544), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym__block_close] = ACTIONS(1490), + [sym_block_continuation] = ACTIONS(1546), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [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), @@ -26033,7 +25931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1548), [sym__inline_math_state_track_marker] = ACTIONS(1548), }, - [STATE(221)] = { + [STATE(218)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1550), [anon_sym_LBRACE] = ACTIONS(1550), [anon_sym_RBRACE] = ACTIONS(1550), @@ -26101,75 +25999,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(219)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), + [sym__block_close] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym__fenced_div_end] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, - [STATE(223)] = { + [STATE(220)] = { + [ts_builtin_sym_end] = ACTIONS(1446), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1552), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), + }, + [STATE(221)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1554), [anon_sym_LBRACE] = ACTIONS(1554), [anon_sym_RBRACE] = ACTIONS(1554), @@ -26237,7 +26203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1554), [sym__inline_math_state_track_marker] = ACTIONS(1554), }, - [STATE(224)] = { + [STATE(222)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), [anon_sym_LBRACE] = ACTIONS(1556), [anon_sym_RBRACE] = ACTIONS(1556), @@ -26305,7 +26271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1556), [sym__inline_math_state_track_marker] = ACTIONS(1556), }, - [STATE(225)] = { + [STATE(223)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), [anon_sym_LBRACE] = ACTIONS(1558), [anon_sym_RBRACE] = ACTIONS(1558), @@ -26373,7 +26339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1558), [sym__inline_math_state_track_marker] = ACTIONS(1558), }, - [STATE(226)] = { + [STATE(224)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1560), [anon_sym_LBRACE] = ACTIONS(1560), [anon_sym_RBRACE] = ACTIONS(1560), @@ -26441,75 +26407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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)] = { + [STATE(225)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1562), [anon_sym_RBRACE] = ACTIONS(1562), @@ -26577,75 +26475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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)] = { + [STATE(226)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(1564), [anon_sym_RBRACE] = ACTIONS(1564), @@ -26713,75 +26543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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)] = { + [STATE(227)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), [anon_sym_LBRACE] = ACTIONS(1566), [anon_sym_RBRACE] = ACTIONS(1566), @@ -26849,75 +26611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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)] = { + [STATE(228)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1568), [anon_sym_LBRACE] = ACTIONS(1568), [anon_sym_RBRACE] = ACTIONS(1568), @@ -26985,413 +26679,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1568), [sym__inline_math_state_track_marker] = ACTIONS(1568), }, + [STATE(229)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym_block_continuation] = ACTIONS(1570), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(230)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym__block_close] = ACTIONS(1434), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym__fenced_div_end] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), + }, + [STATE(231)] = { + [ts_builtin_sym_end] = ACTIONS(1450), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [sym__word] = ACTIONS(1450), + [sym__soft_line_ending] = ACTIONS(1450), + [sym_block_continuation] = ACTIONS(1572), + [sym__block_quote_start] = ACTIONS(1450), + [sym__indented_chunk_start] = ACTIONS(1450), + [sym_atx_h1_marker] = ACTIONS(1450), + [sym_atx_h2_marker] = ACTIONS(1450), + [sym_atx_h3_marker] = ACTIONS(1450), + [sym_atx_h4_marker] = ACTIONS(1450), + [sym_atx_h5_marker] = ACTIONS(1450), + [sym_atx_h6_marker] = ACTIONS(1450), + [sym__thematic_break] = ACTIONS(1450), + [sym__list_marker_minus] = ACTIONS(1450), + [sym__list_marker_plus] = ACTIONS(1450), + [sym__list_marker_star] = ACTIONS(1450), + [sym__list_marker_parenthesis] = ACTIONS(1450), + [sym__list_marker_dot] = ACTIONS(1450), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_example] = ACTIONS(1450), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), + [sym__fenced_code_block_start_backtick] = ACTIONS(1450), + [sym__fenced_code_block_start_tilde] = ACTIONS(1450), + [sym__blank_line_start] = ACTIONS(1450), + [sym_minus_metadata] = ACTIONS(1450), + [sym__pipe_table_start] = ACTIONS(1450), + [sym__fenced_div_start] = ACTIONS(1450), + [sym_ref_id_specifier] = ACTIONS(1450), + [sym__display_math_state_track_marker] = ACTIONS(1450), + [sym__inline_math_state_track_marker] = ACTIONS(1450), + }, + [STATE(232)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym__block_close] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym__fenced_div_end] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), + }, + [STATE(233)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym__fenced_div_end] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(234)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym__block_close] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym__fenced_div_end] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), + }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym__block_close] = ACTIONS(1434), + [sym_block_continuation] = ACTIONS(1574), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym__block_close] = ACTIONS(1482), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym__fenced_div_end] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym__fenced_div_end] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), }, [STATE(238)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym__block_close] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym__fenced_div_end] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym__block_close] = ACTIONS(1474), + [sym_block_continuation] = ACTIONS(1576), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym__block_close] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym__fenced_div_end] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [STATE(241)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1578), @@ -28006,142 +28108,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), + [sym__block_close] = ACTIONS(1470), [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), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, - [STATE(252)] = { + [STATE(251)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1598), @@ -28209,7 +28243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1598), [sym__inline_math_state_track_marker] = ACTIONS(1598), }, - [STATE(253)] = { + [STATE(252)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), [anon_sym_LBRACE] = ACTIONS(1600), [anon_sym_RBRACE] = ACTIONS(1600), @@ -28277,7 +28311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1600), [sym__inline_math_state_track_marker] = ACTIONS(1600), }, - [STATE(254)] = { + [STATE(253)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), [anon_sym_LBRACE] = ACTIONS(1602), [anon_sym_RBRACE] = ACTIONS(1602), @@ -28345,7 +28379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1602), [sym__inline_math_state_track_marker] = ACTIONS(1602), }, - [STATE(255)] = { + [STATE(254)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(1604), [anon_sym_RBRACE] = ACTIONS(1604), @@ -28413,7 +28447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1604), [sym__inline_math_state_track_marker] = ACTIONS(1604), }, - [STATE(256)] = { + [STATE(255)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(1606), @@ -28481,7 +28515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1606), [sym__inline_math_state_track_marker] = ACTIONS(1606), }, - [STATE(257)] = { + [STATE(256)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), [anon_sym_LBRACE] = ACTIONS(1608), [anon_sym_RBRACE] = ACTIONS(1608), @@ -28549,7 +28583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1608), [sym__inline_math_state_track_marker] = ACTIONS(1608), }, - [STATE(258)] = { + [STATE(257)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), [anon_sym_LBRACE] = ACTIONS(1610), [anon_sym_RBRACE] = ACTIONS(1610), @@ -28617,7 +28651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1610), [sym__inline_math_state_track_marker] = ACTIONS(1610), }, - [STATE(259)] = { + [STATE(258)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1612), @@ -28685,7 +28719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1612), [sym__inline_math_state_track_marker] = ACTIONS(1612), }, - [STATE(260)] = { + [STATE(259)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), [anon_sym_LBRACE] = ACTIONS(1614), [anon_sym_RBRACE] = ACTIONS(1614), @@ -28753,7 +28787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1614), [sym__inline_math_state_track_marker] = ACTIONS(1614), }, - [STATE(261)] = { + [STATE(260)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1616), [anon_sym_RBRACE] = ACTIONS(1616), @@ -28821,7 +28855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1616), [sym__inline_math_state_track_marker] = ACTIONS(1616), }, - [STATE(262)] = { + [STATE(261)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1618), @@ -28889,75 +28923,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(262)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_close] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym__fenced_div_end] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), }, - [STATE(264)] = { + [STATE(263)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1622), [anon_sym_LBRACE] = ACTIONS(1622), [anon_sym_RBRACE] = ACTIONS(1622), @@ -29025,7 +29059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1622), [sym__inline_math_state_track_marker] = ACTIONS(1622), }, - [STATE(265)] = { + [STATE(264)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1624), [anon_sym_LBRACE] = ACTIONS(1624), [anon_sym_RBRACE] = ACTIONS(1624), @@ -29093,6 +29127,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1624), [sym__inline_math_state_track_marker] = ACTIONS(1624), }, + [STATE(265)] = { + [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(266)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), [anon_sym_LBRACE] = ACTIONS(1626), @@ -29162,548 +29264,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_BSLASH] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), + [sym__block_close] = ACTIONS(1628), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym__fenced_div_end] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_PERCENT] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1630), + [anon_sym__] = ACTIONS(1630), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [sym__word] = ACTIONS(1630), + [sym__soft_line_ending] = ACTIONS(1630), + [sym__block_close] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1630), + [sym__indented_chunk_start] = ACTIONS(1630), + [sym_atx_h1_marker] = ACTIONS(1630), + [sym_atx_h2_marker] = ACTIONS(1630), + [sym_atx_h3_marker] = ACTIONS(1630), + [sym_atx_h4_marker] = ACTIONS(1630), + [sym_atx_h5_marker] = ACTIONS(1630), + [sym_atx_h6_marker] = ACTIONS(1630), + [sym__thematic_break] = ACTIONS(1630), + [sym__list_marker_minus] = ACTIONS(1630), + [sym__list_marker_plus] = ACTIONS(1630), + [sym__list_marker_star] = ACTIONS(1630), + [sym__list_marker_parenthesis] = ACTIONS(1630), + [sym__list_marker_dot] = ACTIONS(1630), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1630), + [sym__fenced_code_block_start_tilde] = ACTIONS(1630), + [sym__blank_line_start] = ACTIONS(1630), + [sym_minus_metadata] = ACTIONS(1630), + [sym__pipe_table_start] = ACTIONS(1630), + [sym__fenced_div_start] = ACTIONS(1630), + [sym__fenced_div_end] = ACTIONS(1630), + [sym_ref_id_specifier] = ACTIONS(1630), + [sym__display_math_state_track_marker] = ACTIONS(1630), + [sym__inline_math_state_track_marker] = ACTIONS(1630), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_close] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym__fenced_div_end] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1426), + [anon_sym_RBRACE] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_DQUOTE] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1426), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_COMMA] = ACTIONS(1426), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1426), + [anon_sym_AT] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BQUOTE] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_TILDE] = ACTIONS(1426), + [sym__word] = ACTIONS(1426), + [sym__soft_line_ending] = ACTIONS(1426), + [sym__block_close] = ACTIONS(1426), + [sym__block_quote_start] = ACTIONS(1426), + [sym__indented_chunk_start] = ACTIONS(1426), + [sym_atx_h1_marker] = ACTIONS(1426), + [sym_atx_h2_marker] = ACTIONS(1426), + [sym_atx_h3_marker] = ACTIONS(1426), + [sym_atx_h4_marker] = ACTIONS(1426), + [sym_atx_h5_marker] = ACTIONS(1426), + [sym_atx_h6_marker] = ACTIONS(1426), + [sym__thematic_break] = ACTIONS(1426), + [sym__list_marker_minus] = ACTIONS(1426), + [sym__list_marker_plus] = ACTIONS(1426), + [sym__list_marker_star] = ACTIONS(1426), + [sym__list_marker_parenthesis] = ACTIONS(1426), + [sym__list_marker_dot] = ACTIONS(1426), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1426), + [sym__list_marker_example] = ACTIONS(1426), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1426), + [sym__fenced_code_block_start_backtick] = ACTIONS(1426), + [sym__fenced_code_block_start_tilde] = ACTIONS(1426), + [sym__blank_line_start] = ACTIONS(1426), + [sym_minus_metadata] = ACTIONS(1426), + [sym__pipe_table_start] = ACTIONS(1426), + [sym__fenced_div_start] = ACTIONS(1426), + [sym_ref_id_specifier] = ACTIONS(1426), + [sym__display_math_state_track_marker] = ACTIONS(1426), + [sym__inline_math_state_track_marker] = ACTIONS(1426), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1632), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_close] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym__fenced_div_end] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym__fenced_div_end] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_close] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym__fenced_div_end] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), }, [STATE(275)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1640), @@ -29774,482 +29876,1231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_close] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym__fenced_div_end] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1482), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym_block_continuation] = ACTIONS(1644), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), }, [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), + [ts_builtin_sym_end] = ACTIONS(1486), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym_block_continuation] = ACTIONS(1646), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [ts_builtin_sym_end] = ACTIONS(1490), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym_block_continuation] = ACTIONS(1648), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_close] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym__fenced_div_end] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1428), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_SLASH] = ACTIONS(1428), + [anon_sym_COLON] = ACTIONS(1652), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PERCENT] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_DOT] = ACTIONS(1446), + [anon_sym_SLASH] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_AT] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_BSLASH] = ACTIONS(1446), + [anon_sym_RBRACK] = ACTIONS(1446), + [anon_sym_CARET] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1446), + [anon_sym_BQUOTE] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_TILDE] = ACTIONS(1446), + [sym__word] = ACTIONS(1446), + [sym__soft_line_ending] = ACTIONS(1446), + [sym__block_close] = ACTIONS(1446), + [sym_block_continuation] = ACTIONS(1654), + [sym__block_quote_start] = ACTIONS(1446), + [sym__indented_chunk_start] = ACTIONS(1446), + [sym_atx_h1_marker] = ACTIONS(1446), + [sym_atx_h2_marker] = ACTIONS(1446), + [sym_atx_h3_marker] = ACTIONS(1446), + [sym_atx_h4_marker] = ACTIONS(1446), + [sym_atx_h5_marker] = ACTIONS(1446), + [sym_atx_h6_marker] = ACTIONS(1446), + [sym__thematic_break] = ACTIONS(1446), + [sym__list_marker_minus] = ACTIONS(1446), + [sym__list_marker_plus] = ACTIONS(1446), + [sym__list_marker_star] = ACTIONS(1446), + [sym__list_marker_parenthesis] = ACTIONS(1446), + [sym__list_marker_dot] = ACTIONS(1446), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1446), + [sym__list_marker_example] = ACTIONS(1446), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1446), + [sym__fenced_code_block_start_backtick] = ACTIONS(1446), + [sym__fenced_code_block_start_tilde] = ACTIONS(1446), + [sym__blank_line_start] = ACTIONS(1446), + [sym_minus_metadata] = ACTIONS(1446), + [sym__pipe_table_start] = ACTIONS(1446), + [sym__fenced_div_start] = ACTIONS(1446), + [sym_ref_id_specifier] = ACTIONS(1446), + [sym__display_math_state_track_marker] = ACTIONS(1446), + [sym__inline_math_state_track_marker] = ACTIONS(1446), }, [STATE(283)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1450), + [anon_sym_RBRACE] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_DQUOTE] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1450), + [anon_sym_DOLLAR] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1450), + [anon_sym_AMP] = ACTIONS(1450), + [anon_sym_LPAREN] = ACTIONS(1450), + [anon_sym_RPAREN] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_COMMA] = ACTIONS(1450), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_DOT] = ACTIONS(1450), + [anon_sym_SLASH] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1450), + [anon_sym_GT] = ACTIONS(1450), + [anon_sym_QMARK] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(1450), + [anon_sym_LBRACK] = ACTIONS(1450), + [anon_sym_BSLASH] = ACTIONS(1450), + [anon_sym_RBRACK] = ACTIONS(1450), + [anon_sym_CARET] = ACTIONS(1450), + [anon_sym__] = ACTIONS(1450), + [anon_sym_BQUOTE] = ACTIONS(1450), + [anon_sym_PIPE] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1450), + [sym__word] = ACTIONS(1450), + [sym__soft_line_ending] = ACTIONS(1450), + [sym__block_close] = ACTIONS(1450), + [sym_block_continuation] = ACTIONS(1656), + [sym__block_quote_start] = ACTIONS(1450), + [sym__indented_chunk_start] = ACTIONS(1450), + [sym_atx_h1_marker] = ACTIONS(1450), + [sym_atx_h2_marker] = ACTIONS(1450), + [sym_atx_h3_marker] = ACTIONS(1450), + [sym_atx_h4_marker] = ACTIONS(1450), + [sym_atx_h5_marker] = ACTIONS(1450), + [sym_atx_h6_marker] = ACTIONS(1450), + [sym__thematic_break] = ACTIONS(1450), + [sym__list_marker_minus] = ACTIONS(1450), + [sym__list_marker_plus] = ACTIONS(1450), + [sym__list_marker_star] = ACTIONS(1450), + [sym__list_marker_parenthesis] = ACTIONS(1450), + [sym__list_marker_dot] = ACTIONS(1450), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1450), + [sym__list_marker_example] = ACTIONS(1450), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1450), + [sym__fenced_code_block_start_backtick] = ACTIONS(1450), + [sym__fenced_code_block_start_tilde] = ACTIONS(1450), + [sym__blank_line_start] = ACTIONS(1450), + [sym_minus_metadata] = ACTIONS(1450), + [sym__pipe_table_start] = ACTIONS(1450), + [sym__fenced_div_start] = ACTIONS(1450), + [sym_ref_id_specifier] = ACTIONS(1450), + [sym__display_math_state_track_marker] = ACTIONS(1450), + [sym__inline_math_state_track_marker] = ACTIONS(1450), + }, + [STATE(284)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_DQUOTE] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_COMMA] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_AT] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BQUOTE] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_TILDE] = ACTIONS(1454), + [sym__word] = ACTIONS(1454), + [sym__soft_line_ending] = ACTIONS(1454), + [sym__block_close] = ACTIONS(1454), + [sym_block_continuation] = ACTIONS(1658), + [sym__block_quote_start] = ACTIONS(1454), + [sym__indented_chunk_start] = ACTIONS(1454), + [sym_atx_h1_marker] = ACTIONS(1454), + [sym_atx_h2_marker] = ACTIONS(1454), + [sym_atx_h3_marker] = ACTIONS(1454), + [sym_atx_h4_marker] = ACTIONS(1454), + [sym_atx_h5_marker] = ACTIONS(1454), + [sym_atx_h6_marker] = ACTIONS(1454), + [sym__thematic_break] = ACTIONS(1454), + [sym__list_marker_minus] = ACTIONS(1454), + [sym__list_marker_plus] = ACTIONS(1454), + [sym__list_marker_star] = ACTIONS(1454), + [sym__list_marker_parenthesis] = ACTIONS(1454), + [sym__list_marker_dot] = ACTIONS(1454), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1454), + [sym__list_marker_example] = ACTIONS(1454), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1454), + [sym__fenced_code_block_start_backtick] = ACTIONS(1454), + [sym__fenced_code_block_start_tilde] = ACTIONS(1454), + [sym__blank_line_start] = ACTIONS(1454), + [sym_minus_metadata] = ACTIONS(1454), + [sym__pipe_table_start] = ACTIONS(1454), + [sym__fenced_div_start] = ACTIONS(1454), + [sym_ref_id_specifier] = ACTIONS(1454), + [sym__display_math_state_track_marker] = ACTIONS(1454), + [sym__inline_math_state_track_marker] = ACTIONS(1454), + }, + [STATE(285)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1458), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DQUOTE] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_COMMA] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_AT] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1458), + [anon_sym_BSLASH] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym__] = ACTIONS(1458), + [anon_sym_BQUOTE] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_TILDE] = ACTIONS(1458), + [sym__word] = ACTIONS(1458), + [sym__soft_line_ending] = ACTIONS(1458), + [sym__block_close] = ACTIONS(1458), + [sym_block_continuation] = ACTIONS(1660), + [sym__block_quote_start] = ACTIONS(1458), + [sym__indented_chunk_start] = ACTIONS(1458), + [sym_atx_h1_marker] = ACTIONS(1458), + [sym_atx_h2_marker] = ACTIONS(1458), + [sym_atx_h3_marker] = ACTIONS(1458), + [sym_atx_h4_marker] = ACTIONS(1458), + [sym_atx_h5_marker] = ACTIONS(1458), + [sym_atx_h6_marker] = ACTIONS(1458), + [sym__thematic_break] = ACTIONS(1458), + [sym__list_marker_minus] = ACTIONS(1458), + [sym__list_marker_plus] = ACTIONS(1458), + [sym__list_marker_star] = ACTIONS(1458), + [sym__list_marker_parenthesis] = ACTIONS(1458), + [sym__list_marker_dot] = ACTIONS(1458), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1458), + [sym__list_marker_example] = ACTIONS(1458), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1458), + [sym__fenced_code_block_start_backtick] = ACTIONS(1458), + [sym__fenced_code_block_start_tilde] = ACTIONS(1458), + [sym__blank_line_start] = ACTIONS(1458), + [sym_minus_metadata] = ACTIONS(1458), + [sym__pipe_table_start] = ACTIONS(1458), + [sym__fenced_div_start] = ACTIONS(1458), + [sym_ref_id_specifier] = ACTIONS(1458), + [sym__display_math_state_track_marker] = ACTIONS(1458), + [sym__inline_math_state_track_marker] = ACTIONS(1458), + }, + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym_block_continuation] = ACTIONS(1662), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(287)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [sym__word] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym__block_close] = ACTIONS(1462), + [sym_block_continuation] = ACTIONS(1664), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_example] = ACTIONS(1462), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym_minus_metadata] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + [sym__fenced_div_start] = ACTIONS(1462), + [sym_ref_id_specifier] = ACTIONS(1462), + [sym__display_math_state_track_marker] = ACTIONS(1462), + [sym__inline_math_state_track_marker] = ACTIONS(1462), + }, + [STATE(288)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym__] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [sym__word] = ACTIONS(1466), + [sym__soft_line_ending] = ACTIONS(1466), + [sym__block_close] = ACTIONS(1466), + [sym_block_continuation] = ACTIONS(1666), + [sym__block_quote_start] = ACTIONS(1466), + [sym__indented_chunk_start] = ACTIONS(1466), + [sym_atx_h1_marker] = ACTIONS(1466), + [sym_atx_h2_marker] = ACTIONS(1466), + [sym_atx_h3_marker] = ACTIONS(1466), + [sym_atx_h4_marker] = ACTIONS(1466), + [sym_atx_h5_marker] = ACTIONS(1466), + [sym_atx_h6_marker] = ACTIONS(1466), + [sym__thematic_break] = ACTIONS(1466), + [sym__list_marker_minus] = ACTIONS(1466), + [sym__list_marker_plus] = ACTIONS(1466), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1466), + [sym__list_marker_dot] = ACTIONS(1466), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_example] = ACTIONS(1466), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1466), + [sym__fenced_code_block_start_backtick] = ACTIONS(1466), + [sym__fenced_code_block_start_tilde] = ACTIONS(1466), + [sym__blank_line_start] = ACTIONS(1466), + [sym_minus_metadata] = ACTIONS(1466), + [sym__pipe_table_start] = ACTIONS(1466), + [sym__fenced_div_start] = ACTIONS(1466), + [sym_ref_id_specifier] = ACTIONS(1466), + [sym__display_math_state_track_marker] = ACTIONS(1466), + [sym__inline_math_state_track_marker] = ACTIONS(1466), + }, + [STATE(289)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_AT] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_BSLASH] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym__] = ACTIONS(1668), + [anon_sym_BQUOTE] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [sym__word] = ACTIONS(1668), + [sym__soft_line_ending] = ACTIONS(1668), + [sym__block_close] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1668), + [sym__indented_chunk_start] = ACTIONS(1668), + [sym_atx_h1_marker] = ACTIONS(1668), + [sym_atx_h2_marker] = ACTIONS(1668), + [sym_atx_h3_marker] = ACTIONS(1668), + [sym_atx_h4_marker] = ACTIONS(1668), + [sym_atx_h5_marker] = ACTIONS(1668), + [sym_atx_h6_marker] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1668), + [sym__list_marker_minus] = ACTIONS(1668), + [sym__list_marker_plus] = ACTIONS(1668), + [sym__list_marker_star] = ACTIONS(1668), + [sym__list_marker_parenthesis] = ACTIONS(1668), + [sym__list_marker_dot] = ACTIONS(1668), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_example] = ACTIONS(1668), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1668), + [sym__fenced_code_block_start_backtick] = ACTIONS(1668), + [sym__fenced_code_block_start_tilde] = ACTIONS(1668), + [sym__blank_line_start] = ACTIONS(1668), + [sym_minus_metadata] = ACTIONS(1668), + [sym__pipe_table_start] = ACTIONS(1668), + [sym__fenced_div_start] = ACTIONS(1668), + [sym__fenced_div_end] = ACTIONS(1668), + [sym_ref_id_specifier] = ACTIONS(1668), + [sym__display_math_state_track_marker] = ACTIONS(1668), + [sym__inline_math_state_track_marker] = ACTIONS(1668), + }, + [STATE(290)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_PERCENT] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(1670), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_BSLASH] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(1670), + [anon_sym_CARET] = ACTIONS(1670), + [anon_sym__] = ACTIONS(1670), + [anon_sym_BQUOTE] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_TILDE] = ACTIONS(1670), + [sym__word] = ACTIONS(1670), + [sym__soft_line_ending] = ACTIONS(1670), + [sym__block_close] = ACTIONS(1670), + [sym__block_quote_start] = ACTIONS(1670), + [sym__indented_chunk_start] = ACTIONS(1670), + [sym_atx_h1_marker] = ACTIONS(1670), + [sym_atx_h2_marker] = ACTIONS(1670), + [sym_atx_h3_marker] = ACTIONS(1670), + [sym_atx_h4_marker] = ACTIONS(1670), + [sym_atx_h5_marker] = ACTIONS(1670), + [sym_atx_h6_marker] = ACTIONS(1670), + [sym__thematic_break] = ACTIONS(1670), + [sym__list_marker_minus] = ACTIONS(1670), + [sym__list_marker_plus] = ACTIONS(1670), + [sym__list_marker_star] = ACTIONS(1670), + [sym__list_marker_parenthesis] = ACTIONS(1670), + [sym__list_marker_dot] = ACTIONS(1670), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_example] = ACTIONS(1670), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1670), + [sym__fenced_code_block_start_backtick] = ACTIONS(1670), + [sym__fenced_code_block_start_tilde] = ACTIONS(1670), + [sym__blank_line_start] = ACTIONS(1670), + [sym_minus_metadata] = ACTIONS(1670), + [sym__pipe_table_start] = ACTIONS(1670), + [sym__fenced_div_start] = ACTIONS(1670), + [sym__fenced_div_end] = ACTIONS(1670), + [sym_ref_id_specifier] = ACTIONS(1670), + [sym__display_math_state_track_marker] = ACTIONS(1670), + [sym__inline_math_state_track_marker] = ACTIONS(1670), + }, + [STATE(291)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_close] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym__fenced_div_end] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), + }, + [STATE(292)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_close] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym__fenced_div_end] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), + }, + [STATE(293)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym__] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [sym__word] = ACTIONS(1676), + [sym__soft_line_ending] = ACTIONS(1676), + [sym__block_close] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1676), + [sym__indented_chunk_start] = ACTIONS(1676), + [sym_atx_h1_marker] = ACTIONS(1676), + [sym_atx_h2_marker] = ACTIONS(1676), + [sym_atx_h3_marker] = ACTIONS(1676), + [sym_atx_h4_marker] = ACTIONS(1676), + [sym_atx_h5_marker] = ACTIONS(1676), + [sym_atx_h6_marker] = ACTIONS(1676), + [sym__thematic_break] = ACTIONS(1676), + [sym__list_marker_minus] = ACTIONS(1676), + [sym__list_marker_plus] = ACTIONS(1676), + [sym__list_marker_star] = ACTIONS(1676), + [sym__list_marker_parenthesis] = ACTIONS(1676), + [sym__list_marker_dot] = ACTIONS(1676), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_example] = ACTIONS(1676), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), + [sym__fenced_code_block_start_backtick] = ACTIONS(1676), + [sym__fenced_code_block_start_tilde] = ACTIONS(1676), + [sym__blank_line_start] = ACTIONS(1676), + [sym_minus_metadata] = ACTIONS(1676), + [sym__pipe_table_start] = ACTIONS(1676), + [sym__fenced_div_start] = ACTIONS(1676), + [sym__fenced_div_end] = ACTIONS(1676), + [sym_ref_id_specifier] = ACTIONS(1676), + [sym__display_math_state_track_marker] = ACTIONS(1676), + [sym__inline_math_state_track_marker] = ACTIONS(1676), + }, + [STATE(294)] = { + [ts_builtin_sym_end] = ACTIONS(1504), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), [anon_sym_LBRACE] = ACTIONS(1504), [anon_sym_RBRACE] = ACTIONS(1504), @@ -30284,7 +31135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1504), [sym__word] = ACTIONS(1504), [sym__soft_line_ending] = ACTIONS(1504), - [sym__block_close] = ACTIONS(1504), + [sym_block_continuation] = ACTIONS(1678), [sym__block_quote_start] = ACTIONS(1504), [sym__indented_chunk_start] = ACTIONS(1504), [sym_atx_h1_marker] = ACTIONS(1504), @@ -30312,1032 +31163,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym__] = ACTIONS(1680), + [anon_sym_BQUOTE] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [sym__word] = ACTIONS(1680), + [sym__soft_line_ending] = ACTIONS(1680), + [sym__block_close] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1680), + [sym__indented_chunk_start] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1680), + [sym_atx_h2_marker] = ACTIONS(1680), + [sym_atx_h3_marker] = ACTIONS(1680), + [sym_atx_h4_marker] = ACTIONS(1680), + [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h6_marker] = ACTIONS(1680), + [sym__thematic_break] = ACTIONS(1680), + [sym__list_marker_minus] = ACTIONS(1680), + [sym__list_marker_plus] = ACTIONS(1680), + [sym__list_marker_star] = ACTIONS(1680), + [sym__list_marker_parenthesis] = ACTIONS(1680), + [sym__list_marker_dot] = ACTIONS(1680), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_example] = ACTIONS(1680), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1680), + [sym__fenced_code_block_start_backtick] = ACTIONS(1680), + [sym__fenced_code_block_start_tilde] = ACTIONS(1680), + [sym__blank_line_start] = ACTIONS(1680), + [sym_minus_metadata] = ACTIONS(1680), + [sym__pipe_table_start] = ACTIONS(1680), + [sym__fenced_div_start] = ACTIONS(1680), + [sym__fenced_div_end] = ACTIONS(1680), + [sym_ref_id_specifier] = ACTIONS(1680), + [sym__display_math_state_track_marker] = ACTIONS(1680), + [sym__inline_math_state_track_marker] = ACTIONS(1680), }, [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), @@ -31405,123 +31303,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(297)] = { + [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(1684), + [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(298)] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + }, + [STATE(299)] = { + [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), @@ -31541,7 +31507,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1686), [sym__inline_math_state_track_marker] = ACTIONS(1686), }, - [STATE(302)] = { + [STATE(300)] = { + [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_COLON] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1428), + [anon_sym_BQUOTE] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [sym__word] = ACTIONS(1428), + [sym__soft_line_ending] = ACTIONS(1428), + [sym__block_close] = ACTIONS(1428), + [sym__block_quote_start] = ACTIONS(1428), + [sym__indented_chunk_start] = ACTIONS(1428), + [sym_atx_h1_marker] = ACTIONS(1428), + [sym_atx_h2_marker] = ACTIONS(1428), + [sym_atx_h3_marker] = ACTIONS(1428), + [sym_atx_h4_marker] = ACTIONS(1428), + [sym_atx_h5_marker] = ACTIONS(1428), + [sym_atx_h6_marker] = ACTIONS(1428), + [sym__thematic_break] = ACTIONS(1428), + [sym__list_marker_minus] = ACTIONS(1428), + [sym__list_marker_plus] = ACTIONS(1428), + [sym__list_marker_star] = ACTIONS(1428), + [sym__list_marker_parenthesis] = ACTIONS(1428), + [sym__list_marker_dot] = ACTIONS(1428), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1428), + [sym__list_marker_example] = ACTIONS(1428), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1428), + [sym__fenced_code_block_start_backtick] = ACTIONS(1428), + [sym__fenced_code_block_start_tilde] = ACTIONS(1428), + [sym__blank_line_start] = ACTIONS(1428), + [sym_minus_metadata] = ACTIONS(1428), + [sym__pipe_table_start] = ACTIONS(1428), + [sym__fenced_div_start] = ACTIONS(1428), + [sym_ref_id_specifier] = ACTIONS(1428), + [sym__display_math_state_track_marker] = ACTIONS(1428), + [sym__inline_math_state_track_marker] = ACTIONS(1428), + }, + [STATE(301)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), [anon_sym_LBRACE] = ACTIONS(1688), [anon_sym_RBRACE] = ACTIONS(1688), @@ -31609,7 +31643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1688), [sym__inline_math_state_track_marker] = ACTIONS(1688), }, - [STATE(303)] = { + [STATE(302)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1690), [anon_sym_LBRACE] = ACTIONS(1690), [anon_sym_RBRACE] = ACTIONS(1690), @@ -31677,7 +31711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1690), [sym__inline_math_state_track_marker] = ACTIONS(1690), }, - [STATE(304)] = { + [STATE(303)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), [anon_sym_LBRACE] = ACTIONS(1692), [anon_sym_RBRACE] = ACTIONS(1692), @@ -31745,75 +31779,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1692), [sym__inline_math_state_track_marker] = ACTIONS(1692), }, + [STATE(304)] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_DQUOTE] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PERCENT] = ACTIONS(1462), + [anon_sym_AMP] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_DOT] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1462), + [anon_sym_GT] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(1462), + [anon_sym_AT] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1462), + [anon_sym_RBRACK] = ACTIONS(1462), + [anon_sym_CARET] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BQUOTE] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [sym__word] = ACTIONS(1462), + [sym__soft_line_ending] = ACTIONS(1462), + [sym_block_continuation] = ACTIONS(1694), + [sym__block_quote_start] = ACTIONS(1462), + [sym__indented_chunk_start] = ACTIONS(1462), + [sym_atx_h1_marker] = ACTIONS(1462), + [sym_atx_h2_marker] = ACTIONS(1462), + [sym_atx_h3_marker] = ACTIONS(1462), + [sym_atx_h4_marker] = ACTIONS(1462), + [sym_atx_h5_marker] = ACTIONS(1462), + [sym_atx_h6_marker] = ACTIONS(1462), + [sym__thematic_break] = ACTIONS(1462), + [sym__list_marker_minus] = ACTIONS(1462), + [sym__list_marker_plus] = ACTIONS(1462), + [sym__list_marker_star] = ACTIONS(1462), + [sym__list_marker_parenthesis] = ACTIONS(1462), + [sym__list_marker_dot] = ACTIONS(1462), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1462), + [sym__list_marker_example] = ACTIONS(1462), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1462), + [sym__fenced_code_block_start_backtick] = ACTIONS(1462), + [sym__fenced_code_block_start_tilde] = ACTIONS(1462), + [sym__blank_line_start] = ACTIONS(1462), + [sym_minus_metadata] = ACTIONS(1462), + [sym__pipe_table_start] = ACTIONS(1462), + [sym__fenced_div_start] = ACTIONS(1462), + [sym_ref_id_specifier] = ACTIONS(1462), + [sym__display_math_state_track_marker] = ACTIONS(1462), + [sym__inline_math_state_track_marker] = ACTIONS(1462), + }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BSLASH] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_close] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym__fenced_div_end] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), }, [STATE(306)] = { + [ts_builtin_sym_end] = ACTIONS(1466), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_BANG] = ACTIONS(1466), + [anon_sym_DQUOTE] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_PERCENT] = ACTIONS(1466), + [anon_sym_AMP] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_DOT] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1466), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_AT] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1466), + [anon_sym_RBRACK] = ACTIONS(1466), + [anon_sym_CARET] = ACTIONS(1466), + [anon_sym__] = ACTIONS(1466), + [anon_sym_BQUOTE] = ACTIONS(1466), + [anon_sym_PIPE] = ACTIONS(1466), + [anon_sym_TILDE] = ACTIONS(1466), + [sym__word] = ACTIONS(1466), + [sym__soft_line_ending] = ACTIONS(1466), + [sym_block_continuation] = ACTIONS(1698), + [sym__block_quote_start] = ACTIONS(1466), + [sym__indented_chunk_start] = ACTIONS(1466), + [sym_atx_h1_marker] = ACTIONS(1466), + [sym_atx_h2_marker] = ACTIONS(1466), + [sym_atx_h3_marker] = ACTIONS(1466), + [sym_atx_h4_marker] = ACTIONS(1466), + [sym_atx_h5_marker] = ACTIONS(1466), + [sym_atx_h6_marker] = ACTIONS(1466), + [sym__thematic_break] = ACTIONS(1466), + [sym__list_marker_minus] = ACTIONS(1466), + [sym__list_marker_plus] = ACTIONS(1466), + [sym__list_marker_star] = ACTIONS(1466), + [sym__list_marker_parenthesis] = ACTIONS(1466), + [sym__list_marker_dot] = ACTIONS(1466), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1466), + [sym__list_marker_example] = ACTIONS(1466), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1466), + [sym__fenced_code_block_start_backtick] = ACTIONS(1466), + [sym__fenced_code_block_start_tilde] = ACTIONS(1466), + [sym__blank_line_start] = ACTIONS(1466), + [sym_minus_metadata] = ACTIONS(1466), + [sym__pipe_table_start] = ACTIONS(1466), + [sym__fenced_div_start] = ACTIONS(1466), + [sym_ref_id_specifier] = ACTIONS(1466), + [sym__display_math_state_track_marker] = ACTIONS(1466), + [sym__inline_math_state_track_marker] = ACTIONS(1466), + }, + [STATE(307)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1504), [anon_sym_LBRACE] = ACTIONS(1504), [anon_sym_RBRACE] = ACTIONS(1504), @@ -31849,7 +32019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1504), [sym__soft_line_ending] = ACTIONS(1504), [sym__block_close] = ACTIONS(1504), - [sym_block_continuation] = ACTIONS(1696), + [sym_block_continuation] = ACTIONS(1700), [sym__block_quote_start] = ACTIONS(1504), [sym__indented_chunk_start] = ACTIONS(1504), [sym_atx_h1_marker] = ACTIONS(1504), @@ -31881,75 +32051,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [sym__word] = ACTIONS(1702), + [sym__soft_line_ending] = ACTIONS(1702), + [sym__block_close] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1702), + [sym__indented_chunk_start] = ACTIONS(1702), + [sym_atx_h1_marker] = ACTIONS(1702), + [sym_atx_h2_marker] = ACTIONS(1702), + [sym_atx_h3_marker] = ACTIONS(1702), + [sym_atx_h4_marker] = ACTIONS(1702), + [sym_atx_h5_marker] = ACTIONS(1702), + [sym_atx_h6_marker] = ACTIONS(1702), + [sym__thematic_break] = ACTIONS(1702), + [sym__list_marker_minus] = ACTIONS(1702), + [sym__list_marker_plus] = ACTIONS(1702), + [sym__list_marker_star] = ACTIONS(1702), + [sym__list_marker_parenthesis] = ACTIONS(1702), + [sym__list_marker_dot] = ACTIONS(1702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_example] = ACTIONS(1702), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), + [sym__fenced_code_block_start_backtick] = ACTIONS(1702), + [sym__fenced_code_block_start_tilde] = ACTIONS(1702), + [sym__blank_line_start] = ACTIONS(1702), + [sym_minus_metadata] = ACTIONS(1702), + [sym__pipe_table_start] = ACTIONS(1702), + [sym__fenced_div_start] = ACTIONS(1702), + [sym__fenced_div_end] = ACTIONS(1702), + [sym_ref_id_specifier] = ACTIONS(1702), + [sym__display_math_state_track_marker] = ACTIONS(1702), + [sym__inline_math_state_track_marker] = ACTIONS(1702), + }, + [STATE(309)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1508), [anon_sym_LBRACE] = ACTIONS(1508), [anon_sym_RBRACE] = ACTIONS(1508), @@ -31985,7 +32155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__word] = ACTIONS(1508), [sym__soft_line_ending] = ACTIONS(1508), [sym__block_close] = ACTIONS(1508), - [sym_block_continuation] = ACTIONS(1700), + [sym_block_continuation] = ACTIONS(1704), [sym__block_quote_start] = ACTIONS(1508), [sym__indented_chunk_start] = ACTIONS(1508), [sym_atx_h1_marker] = ACTIONS(1508), @@ -32017,143 +32187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -32221,345 +32255,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1706), [sym__inline_math_state_track_marker] = ACTIONS(1706), }, + [STATE(311)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PERCENT] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1494), + [anon_sym_COLON] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_AT] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BSLASH] = ACTIONS(1494), + [anon_sym_RBRACK] = ACTIONS(1494), + [anon_sym_CARET] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [sym__word] = ACTIONS(1494), + [sym__soft_line_ending] = ACTIONS(1494), + [sym__block_close] = ACTIONS(1494), + [sym__block_quote_start] = ACTIONS(1494), + [sym__indented_chunk_start] = ACTIONS(1494), + [sym_atx_h1_marker] = ACTIONS(1494), + [sym_atx_h2_marker] = ACTIONS(1494), + [sym_atx_h3_marker] = ACTIONS(1494), + [sym_atx_h4_marker] = ACTIONS(1494), + [sym_atx_h5_marker] = ACTIONS(1494), + [sym_atx_h6_marker] = ACTIONS(1494), + [sym__thematic_break] = ACTIONS(1494), + [sym__list_marker_minus] = ACTIONS(1494), + [sym__list_marker_plus] = ACTIONS(1494), + [sym__list_marker_star] = ACTIONS(1494), + [sym__list_marker_parenthesis] = ACTIONS(1494), + [sym__list_marker_dot] = ACTIONS(1494), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1494), + [sym__list_marker_example] = ACTIONS(1494), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1494), + [sym__fenced_code_block_start_backtick] = ACTIONS(1494), + [sym__fenced_code_block_start_tilde] = ACTIONS(1494), + [sym__blank_line_start] = ACTIONS(1494), + [sym_minus_metadata] = ACTIONS(1494), + [sym__pipe_table_start] = ACTIONS(1494), + [sym__fenced_div_start] = ACTIONS(1494), + [sym_ref_id_specifier] = ACTIONS(1494), + [sym__display_math_state_track_marker] = ACTIONS(1494), + [sym__inline_math_state_track_marker] = ACTIONS(1494), + }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_BSLASH] = ACTIONS(1708), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_close] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym__fenced_div_end] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), }, [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), + [ts_builtin_sym_end] = ACTIONS(1470), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), [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), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, [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), + [ts_builtin_sym_end] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), [sym_block_continuation] = ACTIONS(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), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_close] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym__fenced_div_end] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), }, [STATE(316)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = ACTIONS(1716), + [sym__block_close] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1716), + [sym__indented_chunk_start] = ACTIONS(1716), + [sym_atx_h1_marker] = ACTIONS(1716), + [sym_atx_h2_marker] = ACTIONS(1716), + [sym_atx_h3_marker] = ACTIONS(1716), + [sym_atx_h4_marker] = ACTIONS(1716), + [sym_atx_h5_marker] = ACTIONS(1716), + [sym_atx_h6_marker] = ACTIONS(1716), + [sym__thematic_break] = ACTIONS(1716), + [sym__list_marker_minus] = ACTIONS(1716), + [sym__list_marker_plus] = ACTIONS(1716), + [sym__list_marker_star] = ACTIONS(1716), + [sym__list_marker_parenthesis] = ACTIONS(1716), + [sym__list_marker_dot] = ACTIONS(1716), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_example] = ACTIONS(1716), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1716), + [sym__fenced_code_block_start_backtick] = ACTIONS(1716), + [sym__fenced_code_block_start_tilde] = ACTIONS(1716), + [sym__blank_line_start] = ACTIONS(1716), + [sym_minus_metadata] = ACTIONS(1716), + [sym__pipe_table_start] = ACTIONS(1716), + [sym__fenced_div_start] = ACTIONS(1716), + [sym__fenced_div_end] = ACTIONS(1716), + [sym_ref_id_specifier] = ACTIONS(1716), + [sym__display_math_state_track_marker] = ACTIONS(1716), + [sym__inline_math_state_track_marker] = ACTIONS(1716), }, [STATE(317)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), @@ -32630,274 +32732,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1676), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym__] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [sym__word] = ACTIONS(1676), + [sym__soft_line_ending] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1676), + [sym__indented_chunk_start] = ACTIONS(1676), + [sym_atx_h1_marker] = ACTIONS(1676), + [sym_atx_h2_marker] = ACTIONS(1676), + [sym_atx_h3_marker] = ACTIONS(1676), + [sym_atx_h4_marker] = ACTIONS(1676), + [sym_atx_h5_marker] = ACTIONS(1676), + [sym_atx_h6_marker] = ACTIONS(1676), + [sym__thematic_break] = ACTIONS(1676), + [sym__list_marker_minus] = ACTIONS(1676), + [sym__list_marker_plus] = ACTIONS(1676), + [sym__list_marker_star] = ACTIONS(1676), + [sym__list_marker_parenthesis] = ACTIONS(1676), + [sym__list_marker_dot] = ACTIONS(1676), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_example] = ACTIONS(1676), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), + [sym__fenced_code_block_start_backtick] = ACTIONS(1676), + [sym__fenced_code_block_start_tilde] = ACTIONS(1676), + [sym__blank_line_start] = ACTIONS(1676), + [sym_minus_metadata] = ACTIONS(1676), + [sym__pipe_table_start] = ACTIONS(1676), + [sym__fenced_div_start] = ACTIONS(1676), + [sym_ref_id_specifier] = ACTIONS(1676), + [sym__display_math_state_track_marker] = ACTIONS(1676), + [sym__inline_math_state_track_marker] = ACTIONS(1676), }, [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), + [ts_builtin_sym_end] = ACTIONS(1490), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [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), @@ -32964,7 +32999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1578), [sym__inline_math_state_track_marker] = ACTIONS(1578), }, - [STATE(323)] = { + [STATE(322)] = { [ts_builtin_sym_end] = ACTIONS(1580), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(1580), @@ -33031,7 +33066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1580), [sym__inline_math_state_track_marker] = ACTIONS(1580), }, - [STATE(324)] = { + [STATE(323)] = { [ts_builtin_sym_end] = ACTIONS(1582), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), [anon_sym_LBRACE] = ACTIONS(1582), @@ -33098,7 +33133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1582), [sym__inline_math_state_track_marker] = ACTIONS(1582), }, - [STATE(325)] = { + [STATE(324)] = { [ts_builtin_sym_end] = ACTIONS(1584), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), [anon_sym_LBRACE] = ACTIONS(1584), @@ -33165,7 +33200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1584), [sym__inline_math_state_track_marker] = ACTIONS(1584), }, - [STATE(326)] = { + [STATE(325)] = { [ts_builtin_sym_end] = ACTIONS(1586), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), [anon_sym_LBRACE] = ACTIONS(1586), @@ -33232,7 +33267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1586), [sym__inline_math_state_track_marker] = ACTIONS(1586), }, - [STATE(327)] = { + [STATE(326)] = { [ts_builtin_sym_end] = ACTIONS(1588), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), [anon_sym_LBRACE] = ACTIONS(1588), @@ -33299,6 +33334,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1588), [sym__inline_math_state_track_marker] = ACTIONS(1588), }, + [STATE(327)] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), + [anon_sym_LBRACE] = ACTIONS(1590), + [anon_sym_RBRACE] = ACTIONS(1590), + [anon_sym_EQ] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_DQUOTE] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1590), + [anon_sym_DOLLAR] = ACTIONS(1590), + [anon_sym_PERCENT] = ACTIONS(1590), + [anon_sym_AMP] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(1590), + [anon_sym_RPAREN] = ACTIONS(1590), + [anon_sym_STAR] = ACTIONS(1590), + [anon_sym_PLUS] = ACTIONS(1590), + [anon_sym_COMMA] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(1590), + [anon_sym_SLASH] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1590), + [anon_sym_GT] = ACTIONS(1590), + [anon_sym_QMARK] = ACTIONS(1590), + [anon_sym_AT] = ACTIONS(1590), + [anon_sym_LBRACK] = ACTIONS(1590), + [anon_sym_BSLASH] = ACTIONS(1590), + [anon_sym_RBRACK] = ACTIONS(1590), + [anon_sym_CARET] = ACTIONS(1590), + [anon_sym__] = ACTIONS(1590), + [anon_sym_BQUOTE] = ACTIONS(1590), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), + [sym__word] = ACTIONS(1590), + [sym__soft_line_ending] = ACTIONS(1590), + [sym__block_quote_start] = ACTIONS(1590), + [sym__indented_chunk_start] = ACTIONS(1590), + [sym_atx_h1_marker] = ACTIONS(1590), + [sym_atx_h2_marker] = ACTIONS(1590), + [sym_atx_h3_marker] = ACTIONS(1590), + [sym_atx_h4_marker] = ACTIONS(1590), + [sym_atx_h5_marker] = ACTIONS(1590), + [sym_atx_h6_marker] = ACTIONS(1590), + [sym__thematic_break] = ACTIONS(1590), + [sym__list_marker_minus] = ACTIONS(1590), + [sym__list_marker_plus] = ACTIONS(1590), + [sym__list_marker_star] = ACTIONS(1590), + [sym__list_marker_parenthesis] = ACTIONS(1590), + [sym__list_marker_dot] = ACTIONS(1590), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1590), + [sym__list_marker_example] = ACTIONS(1590), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1590), + [sym__fenced_code_block_start_backtick] = ACTIONS(1590), + [sym__fenced_code_block_start_tilde] = ACTIONS(1590), + [sym__blank_line_start] = ACTIONS(1590), + [sym_minus_metadata] = ACTIONS(1590), + [sym__pipe_table_start] = ACTIONS(1590), + [sym__fenced_div_start] = ACTIONS(1590), + [sym_ref_id_specifier] = ACTIONS(1590), + [sym__display_math_state_track_marker] = ACTIONS(1590), + [sym__inline_math_state_track_marker] = ACTIONS(1590), + }, [STATE(328)] = { [ts_builtin_sym_end] = ACTIONS(1592), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), @@ -33434,140 +33536,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [ts_builtin_sym_end] = ACTIONS(1522), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), }, [STATE(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), @@ -33634,7 +33669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1598), [sym__inline_math_state_track_marker] = ACTIONS(1598), }, - [STATE(333)] = { + [STATE(332)] = { [ts_builtin_sym_end] = ACTIONS(1600), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), [anon_sym_LBRACE] = ACTIONS(1600), @@ -33701,7 +33736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1600), [sym__inline_math_state_track_marker] = ACTIONS(1600), }, - [STATE(334)] = { + [STATE(333)] = { [ts_builtin_sym_end] = ACTIONS(1602), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), [anon_sym_LBRACE] = ACTIONS(1602), @@ -33768,7 +33803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1602), [sym__inline_math_state_track_marker] = ACTIONS(1602), }, - [STATE(335)] = { + [STATE(334)] = { [ts_builtin_sym_end] = ACTIONS(1604), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(1604), @@ -33835,7 +33870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1604), [sym__inline_math_state_track_marker] = ACTIONS(1604), }, - [STATE(336)] = { + [STATE(335)] = { [ts_builtin_sym_end] = ACTIONS(1606), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), [anon_sym_LBRACE] = ACTIONS(1606), @@ -33902,7 +33937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1606), [sym__inline_math_state_track_marker] = ACTIONS(1606), }, - [STATE(337)] = { + [STATE(336)] = { [ts_builtin_sym_end] = ACTIONS(1608), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), [anon_sym_LBRACE] = ACTIONS(1608), @@ -33969,7 +34004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1608), [sym__inline_math_state_track_marker] = ACTIONS(1608), }, - [STATE(338)] = { + [STATE(337)] = { [ts_builtin_sym_end] = ACTIONS(1610), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), [anon_sym_LBRACE] = ACTIONS(1610), @@ -34036,7 +34071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1610), [sym__inline_math_state_track_marker] = ACTIONS(1610), }, - [STATE(339)] = { + [STATE(338)] = { [ts_builtin_sym_end] = ACTIONS(1612), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), [anon_sym_LBRACE] = ACTIONS(1612), @@ -34103,7 +34138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1612), [sym__inline_math_state_track_marker] = ACTIONS(1612), }, - [STATE(340)] = { + [STATE(339)] = { [ts_builtin_sym_end] = ACTIONS(1614), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), [anon_sym_LBRACE] = ACTIONS(1614), @@ -34170,7 +34205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1614), [sym__inline_math_state_track_marker] = ACTIONS(1614), }, - [STATE(341)] = { + [STATE(340)] = { [ts_builtin_sym_end] = ACTIONS(1616), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1616), @@ -34237,7 +34272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1616), [sym__inline_math_state_track_marker] = ACTIONS(1616), }, - [STATE(342)] = { + [STATE(341)] = { [ts_builtin_sym_end] = ACTIONS(1618), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), [anon_sym_LBRACE] = ACTIONS(1618), @@ -34304,6 +34339,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1618), [sym__inline_math_state_track_marker] = ACTIONS(1618), }, + [STATE(342)] = { + [ts_builtin_sym_end] = ACTIONS(1620), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), + }, [STATE(343)] = { [ts_builtin_sym_end] = ACTIONS(1718), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1718), @@ -34372,1480 +34474,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1680), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym__] = ACTIONS(1680), + [anon_sym_BQUOTE] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [sym__word] = ACTIONS(1680), + [sym__soft_line_ending] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1680), + [sym__indented_chunk_start] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1680), + [sym_atx_h2_marker] = ACTIONS(1680), + [sym_atx_h3_marker] = ACTIONS(1680), + [sym_atx_h4_marker] = ACTIONS(1680), + [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h6_marker] = ACTIONS(1680), + [sym__thematic_break] = ACTIONS(1680), + [sym__list_marker_minus] = ACTIONS(1680), + [sym__list_marker_plus] = ACTIONS(1680), + [sym__list_marker_star] = ACTIONS(1680), + [sym__list_marker_parenthesis] = ACTIONS(1680), + [sym__list_marker_dot] = ACTIONS(1680), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_example] = ACTIONS(1680), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1680), + [sym__fenced_code_block_start_backtick] = ACTIONS(1680), + [sym__fenced_code_block_start_tilde] = ACTIONS(1680), + [sym__blank_line_start] = ACTIONS(1680), + [sym_minus_metadata] = ACTIONS(1680), + [sym__pipe_table_start] = ACTIONS(1680), + [sym__fenced_div_start] = ACTIONS(1680), + [sym_ref_id_specifier] = ACTIONS(1680), + [sym__display_math_state_track_marker] = ACTIONS(1680), + [sym__inline_math_state_track_marker] = ACTIONS(1680), }, [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), + [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(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), @@ -35912,677 +34808,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(349)] = { + [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(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(350)] = { + [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(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(351)] = { + [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(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(352)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_close] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), }, - [STATE(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(353)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_close] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), }, - [STATE(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(354)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_close] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), }, - [STATE(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(355)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1676), + [anon_sym_SQUOTE] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1676), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1676), + [anon_sym_AT] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_BSLASH] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym__] = ACTIONS(1676), + [anon_sym_BQUOTE] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(1676), + [sym__word] = ACTIONS(1676), + [sym__soft_line_ending] = ACTIONS(1676), + [sym__block_close] = ACTIONS(1676), + [sym__block_quote_start] = ACTIONS(1676), + [sym__indented_chunk_start] = ACTIONS(1676), + [sym_atx_h1_marker] = ACTIONS(1676), + [sym_atx_h2_marker] = ACTIONS(1676), + [sym_atx_h3_marker] = ACTIONS(1676), + [sym_atx_h4_marker] = ACTIONS(1676), + [sym_atx_h5_marker] = ACTIONS(1676), + [sym_atx_h6_marker] = ACTIONS(1676), + [sym__thematic_break] = ACTIONS(1676), + [sym__list_marker_minus] = ACTIONS(1676), + [sym__list_marker_plus] = ACTIONS(1676), + [sym__list_marker_star] = ACTIONS(1676), + [sym__list_marker_parenthesis] = ACTIONS(1676), + [sym__list_marker_dot] = ACTIONS(1676), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1676), + [sym__list_marker_example] = ACTIONS(1676), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1676), + [sym__fenced_code_block_start_backtick] = ACTIONS(1676), + [sym__fenced_code_block_start_tilde] = ACTIONS(1676), + [sym__blank_line_start] = ACTIONS(1676), + [sym_minus_metadata] = ACTIONS(1676), + [sym__pipe_table_start] = ACTIONS(1676), + [sym__fenced_div_start] = ACTIONS(1676), + [sym_ref_id_specifier] = ACTIONS(1676), + [sym__display_math_state_track_marker] = ACTIONS(1676), + [sym__inline_math_state_track_marker] = ACTIONS(1676), }, - [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(356)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1680), + [anon_sym_SQUOTE] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_DQUOTE] = ACTIONS(1680), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PERCENT] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_RPAREN] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_PLUS] = ACTIONS(1680), + [anon_sym_COMMA] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_DOT] = ACTIONS(1680), + [anon_sym_SLASH] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_GT] = ACTIONS(1680), + [anon_sym_QMARK] = ACTIONS(1680), + [anon_sym_AT] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_BSLASH] = ACTIONS(1680), + [anon_sym_RBRACK] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1680), + [anon_sym__] = ACTIONS(1680), + [anon_sym_BQUOTE] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [sym__word] = ACTIONS(1680), + [sym__soft_line_ending] = ACTIONS(1680), + [sym__block_close] = ACTIONS(1680), + [sym__block_quote_start] = ACTIONS(1680), + [sym__indented_chunk_start] = ACTIONS(1680), + [sym_atx_h1_marker] = ACTIONS(1680), + [sym_atx_h2_marker] = ACTIONS(1680), + [sym_atx_h3_marker] = ACTIONS(1680), + [sym_atx_h4_marker] = ACTIONS(1680), + [sym_atx_h5_marker] = ACTIONS(1680), + [sym_atx_h6_marker] = ACTIONS(1680), + [sym__thematic_break] = ACTIONS(1680), + [sym__list_marker_minus] = ACTIONS(1680), + [sym__list_marker_plus] = ACTIONS(1680), + [sym__list_marker_star] = ACTIONS(1680), + [sym__list_marker_parenthesis] = ACTIONS(1680), + [sym__list_marker_dot] = ACTIONS(1680), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1680), + [sym__list_marker_example] = ACTIONS(1680), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1680), + [sym__fenced_code_block_start_backtick] = ACTIONS(1680), + [sym__fenced_code_block_start_tilde] = ACTIONS(1680), + [sym__blank_line_start] = ACTIONS(1680), + [sym_minus_metadata] = ACTIONS(1680), + [sym__pipe_table_start] = ACTIONS(1680), + [sym__fenced_div_start] = ACTIONS(1680), + [sym_ref_id_specifier] = ACTIONS(1680), + [sym__display_math_state_track_marker] = ACTIONS(1680), + [sym__inline_math_state_track_marker] = ACTIONS(1680), }, - [STATE(377)] = { + [STATE(357)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1682), [anon_sym_LBRACE] = ACTIONS(1682), [anon_sym_RBRACE] = ACTIONS(1682), @@ -36649,141 +35411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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)] = { + [STATE(358)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1688), [anon_sym_LBRACE] = ACTIONS(1688), [anon_sym_RBRACE] = ACTIONS(1688), @@ -36850,74 +35478,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(359)] = { + [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(360)] = { + [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(361)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BSLASH] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_close] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), + }, + [STATE(362)] = { + [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(363)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = ACTIONS(1716), + [sym__block_close] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1716), + [sym__indented_chunk_start] = ACTIONS(1716), + [sym_atx_h1_marker] = ACTIONS(1716), + [sym_atx_h2_marker] = ACTIONS(1716), + [sym_atx_h3_marker] = ACTIONS(1716), + [sym_atx_h4_marker] = ACTIONS(1716), + [sym_atx_h5_marker] = ACTIONS(1716), + [sym_atx_h6_marker] = ACTIONS(1716), + [sym__thematic_break] = ACTIONS(1716), + [sym__list_marker_minus] = ACTIONS(1716), + [sym__list_marker_plus] = ACTIONS(1716), + [sym__list_marker_star] = ACTIONS(1716), + [sym__list_marker_parenthesis] = ACTIONS(1716), + [sym__list_marker_dot] = ACTIONS(1716), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_example] = ACTIONS(1716), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1716), + [sym__fenced_code_block_start_backtick] = ACTIONS(1716), + [sym__fenced_code_block_start_tilde] = ACTIONS(1716), + [sym__blank_line_start] = ACTIONS(1716), + [sym_minus_metadata] = ACTIONS(1716), + [sym__pipe_table_start] = ACTIONS(1716), + [sym__fenced_div_start] = ACTIONS(1716), + [sym_ref_id_specifier] = ACTIONS(1716), + [sym__display_math_state_track_marker] = ACTIONS(1716), + [sym__inline_math_state_track_marker] = ACTIONS(1716), }, - [STATE(382)] = { + [STATE(364)] = { + [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(365)] = { + [ts_builtin_sym_end] = ACTIONS(1692), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1692), [anon_sym_LBRACE] = ACTIONS(1692), [anon_sym_RBRACE] = ACTIONS(1692), @@ -36952,7 +35916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -36984,141 +35947,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(366)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_close] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), }, - [STATE(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(367)] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_EQ] = ACTIONS(1696), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_DQUOTE] = ACTIONS(1696), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PERCENT] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_RPAREN] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_PLUS] = ACTIONS(1696), + [anon_sym_COMMA] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_DOT] = ACTIONS(1696), + [anon_sym_SLASH] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_GT] = ACTIONS(1696), + [anon_sym_QMARK] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BSLASH] = ACTIONS(1696), + [anon_sym_RBRACK] = ACTIONS(1696), + [anon_sym_CARET] = ACTIONS(1696), + [anon_sym__] = ACTIONS(1696), + [anon_sym_BQUOTE] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [sym__word] = ACTIONS(1696), + [sym__soft_line_ending] = ACTIONS(1696), + [sym__block_quote_start] = ACTIONS(1696), + [sym__indented_chunk_start] = ACTIONS(1696), + [sym_atx_h1_marker] = ACTIONS(1696), + [sym_atx_h2_marker] = ACTIONS(1696), + [sym_atx_h3_marker] = ACTIONS(1696), + [sym_atx_h4_marker] = ACTIONS(1696), + [sym_atx_h5_marker] = ACTIONS(1696), + [sym_atx_h6_marker] = ACTIONS(1696), + [sym__thematic_break] = ACTIONS(1696), + [sym__list_marker_minus] = ACTIONS(1696), + [sym__list_marker_plus] = ACTIONS(1696), + [sym__list_marker_star] = ACTIONS(1696), + [sym__list_marker_parenthesis] = ACTIONS(1696), + [sym__list_marker_dot] = ACTIONS(1696), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1696), + [sym__list_marker_example] = ACTIONS(1696), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1696), + [sym__fenced_code_block_start_backtick] = ACTIONS(1696), + [sym__fenced_code_block_start_tilde] = ACTIONS(1696), + [sym__blank_line_start] = ACTIONS(1696), + [sym_minus_metadata] = ACTIONS(1696), + [sym__pipe_table_start] = ACTIONS(1696), + [sym__fenced_div_start] = ACTIONS(1696), + [sym_ref_id_specifier] = ACTIONS(1696), + [sym__display_math_state_track_marker] = ACTIONS(1696), + [sym__inline_math_state_track_marker] = ACTIONS(1696), }, - [STATE(385)] = { + [STATE(368)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_close] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(369)] = { + [ts_builtin_sym_end] = ACTIONS(1706), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1706), [anon_sym_LBRACE] = ACTIONS(1706), [anon_sym_RBRACE] = ACTIONS(1706), @@ -37153,7 +36184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -37185,141 +36215,1146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(370)] = { + [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(371)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_BSLASH] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), + [sym__block_close] = ACTIONS(1628), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), + }, + [STATE(372)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_PERCENT] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1630), + [anon_sym__] = ACTIONS(1630), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [sym__word] = ACTIONS(1630), + [sym__soft_line_ending] = ACTIONS(1630), + [sym__block_close] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1630), + [sym__indented_chunk_start] = ACTIONS(1630), + [sym_atx_h1_marker] = ACTIONS(1630), + [sym_atx_h2_marker] = ACTIONS(1630), + [sym_atx_h3_marker] = ACTIONS(1630), + [sym_atx_h4_marker] = ACTIONS(1630), + [sym_atx_h5_marker] = ACTIONS(1630), + [sym_atx_h6_marker] = ACTIONS(1630), + [sym__thematic_break] = ACTIONS(1630), + [sym__list_marker_minus] = ACTIONS(1630), + [sym__list_marker_plus] = ACTIONS(1630), + [sym__list_marker_star] = ACTIONS(1630), + [sym__list_marker_parenthesis] = ACTIONS(1630), + [sym__list_marker_dot] = ACTIONS(1630), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1630), + [sym__fenced_code_block_start_tilde] = ACTIONS(1630), + [sym__blank_line_start] = ACTIONS(1630), + [sym_minus_metadata] = ACTIONS(1630), + [sym__pipe_table_start] = ACTIONS(1630), + [sym__fenced_div_start] = ACTIONS(1630), + [sym_ref_id_specifier] = ACTIONS(1630), + [sym__display_math_state_track_marker] = ACTIONS(1630), + [sym__inline_math_state_track_marker] = ACTIONS(1630), + }, + [STATE(373)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_close] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), + }, + [STATE(374)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_close] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), + }, + [STATE(375)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_close] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), + }, + [STATE(376)] = { + [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(377)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_close] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), + }, + [STATE(378)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_AT] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_BSLASH] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym__] = ACTIONS(1668), + [anon_sym_BQUOTE] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [sym__word] = ACTIONS(1668), + [sym__soft_line_ending] = ACTIONS(1668), + [sym__block_close] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1668), + [sym__indented_chunk_start] = ACTIONS(1668), + [sym_atx_h1_marker] = ACTIONS(1668), + [sym_atx_h2_marker] = ACTIONS(1668), + [sym_atx_h3_marker] = ACTIONS(1668), + [sym_atx_h4_marker] = ACTIONS(1668), + [sym_atx_h5_marker] = ACTIONS(1668), + [sym_atx_h6_marker] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1668), + [sym__list_marker_minus] = ACTIONS(1668), + [sym__list_marker_plus] = ACTIONS(1668), + [sym__list_marker_star] = ACTIONS(1668), + [sym__list_marker_parenthesis] = ACTIONS(1668), + [sym__list_marker_dot] = ACTIONS(1668), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_example] = ACTIONS(1668), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1668), + [sym__fenced_code_block_start_backtick] = ACTIONS(1668), + [sym__fenced_code_block_start_tilde] = ACTIONS(1668), + [sym__blank_line_start] = ACTIONS(1668), + [sym_minus_metadata] = ACTIONS(1668), + [sym__pipe_table_start] = ACTIONS(1668), + [sym__fenced_div_start] = ACTIONS(1668), + [sym_ref_id_specifier] = ACTIONS(1668), + [sym__display_math_state_track_marker] = ACTIONS(1668), + [sym__inline_math_state_track_marker] = ACTIONS(1668), + }, + [STATE(379)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_PERCENT] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(1670), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_BSLASH] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(1670), + [anon_sym_CARET] = ACTIONS(1670), + [anon_sym__] = ACTIONS(1670), + [anon_sym_BQUOTE] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_TILDE] = ACTIONS(1670), + [sym__word] = ACTIONS(1670), + [sym__soft_line_ending] = ACTIONS(1670), + [sym__block_close] = ACTIONS(1670), + [sym__block_quote_start] = ACTIONS(1670), + [sym__indented_chunk_start] = ACTIONS(1670), + [sym_atx_h1_marker] = ACTIONS(1670), + [sym_atx_h2_marker] = ACTIONS(1670), + [sym_atx_h3_marker] = ACTIONS(1670), + [sym_atx_h4_marker] = ACTIONS(1670), + [sym_atx_h5_marker] = ACTIONS(1670), + [sym_atx_h6_marker] = ACTIONS(1670), + [sym__thematic_break] = ACTIONS(1670), + [sym__list_marker_minus] = ACTIONS(1670), + [sym__list_marker_plus] = ACTIONS(1670), + [sym__list_marker_star] = ACTIONS(1670), + [sym__list_marker_parenthesis] = ACTIONS(1670), + [sym__list_marker_dot] = ACTIONS(1670), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_example] = ACTIONS(1670), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1670), + [sym__fenced_code_block_start_backtick] = ACTIONS(1670), + [sym__fenced_code_block_start_tilde] = ACTIONS(1670), + [sym__blank_line_start] = ACTIONS(1670), + [sym_minus_metadata] = ACTIONS(1670), + [sym__pipe_table_start] = ACTIONS(1670), + [sym__fenced_div_start] = ACTIONS(1670), + [sym_ref_id_specifier] = ACTIONS(1670), + [sym__display_math_state_track_marker] = ACTIONS(1670), + [sym__inline_math_state_track_marker] = ACTIONS(1670), + }, + [STATE(380)] = { + [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(381)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [sym__word] = ACTIONS(1702), + [sym__soft_line_ending] = ACTIONS(1702), + [sym__block_close] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1702), + [sym__indented_chunk_start] = ACTIONS(1702), + [sym_atx_h1_marker] = ACTIONS(1702), + [sym_atx_h2_marker] = ACTIONS(1702), + [sym_atx_h3_marker] = ACTIONS(1702), + [sym_atx_h4_marker] = ACTIONS(1702), + [sym_atx_h5_marker] = ACTIONS(1702), + [sym_atx_h6_marker] = ACTIONS(1702), + [sym__thematic_break] = ACTIONS(1702), + [sym__list_marker_minus] = ACTIONS(1702), + [sym__list_marker_plus] = ACTIONS(1702), + [sym__list_marker_star] = ACTIONS(1702), + [sym__list_marker_parenthesis] = ACTIONS(1702), + [sym__list_marker_dot] = ACTIONS(1702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_example] = ACTIONS(1702), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), + [sym__fenced_code_block_start_backtick] = ACTIONS(1702), + [sym__fenced_code_block_start_tilde] = ACTIONS(1702), + [sym__blank_line_start] = ACTIONS(1702), + [sym_minus_metadata] = ACTIONS(1702), + [sym__pipe_table_start] = ACTIONS(1702), + [sym__fenced_div_start] = ACTIONS(1702), + [sym_ref_id_specifier] = ACTIONS(1702), + [sym__display_math_state_track_marker] = ACTIONS(1702), + [sym__inline_math_state_track_marker] = ACTIONS(1702), + }, + [STATE(382)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_BSLASH] = ACTIONS(1708), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_close] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), + }, + [STATE(383)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_close] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), + }, + [STATE(384)] = { + [ts_builtin_sym_end] = ACTIONS(1716), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_EQ] = ACTIONS(1716), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_DQUOTE] = ACTIONS(1716), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_DOLLAR] = ACTIONS(1716), + [anon_sym_PERCENT] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_RPAREN] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_PLUS] = ACTIONS(1716), + [anon_sym_COMMA] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_DOT] = ACTIONS(1716), + [anon_sym_SLASH] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_GT] = ACTIONS(1716), + [anon_sym_QMARK] = ACTIONS(1716), + [anon_sym_AT] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_BSLASH] = ACTIONS(1716), + [anon_sym_RBRACK] = ACTIONS(1716), + [anon_sym_CARET] = ACTIONS(1716), + [anon_sym__] = ACTIONS(1716), + [anon_sym_BQUOTE] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_TILDE] = ACTIONS(1716), + [sym__word] = ACTIONS(1716), + [sym__soft_line_ending] = ACTIONS(1716), + [sym__block_quote_start] = ACTIONS(1716), + [sym__indented_chunk_start] = ACTIONS(1716), + [sym_atx_h1_marker] = ACTIONS(1716), + [sym_atx_h2_marker] = ACTIONS(1716), + [sym_atx_h3_marker] = ACTIONS(1716), + [sym_atx_h4_marker] = ACTIONS(1716), + [sym_atx_h5_marker] = ACTIONS(1716), + [sym_atx_h6_marker] = ACTIONS(1716), + [sym__thematic_break] = ACTIONS(1716), + [sym__list_marker_minus] = ACTIONS(1716), + [sym__list_marker_plus] = ACTIONS(1716), + [sym__list_marker_star] = ACTIONS(1716), + [sym__list_marker_parenthesis] = ACTIONS(1716), + [sym__list_marker_dot] = ACTIONS(1716), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1716), + [sym__list_marker_example] = ACTIONS(1716), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1716), + [sym__fenced_code_block_start_backtick] = ACTIONS(1716), + [sym__fenced_code_block_start_tilde] = ACTIONS(1716), + [sym__blank_line_start] = ACTIONS(1716), + [sym_minus_metadata] = ACTIONS(1716), + [sym__pipe_table_start] = ACTIONS(1716), + [sym__fenced_div_start] = ACTIONS(1716), + [sym_ref_id_specifier] = ACTIONS(1716), + [sym__display_math_state_track_marker] = ACTIONS(1716), + [sym__inline_math_state_track_marker] = ACTIONS(1716), + }, + [STATE(385)] = { + [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(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(386)] = { + [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(388)] = { + [STATE(387)] = { [ts_builtin_sym_end] = ACTIONS(1626), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1626), [anon_sym_LBRACE] = ACTIONS(1626), @@ -37386,677 +37421,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1626), [sym__inline_math_state_track_marker] = ACTIONS(1626), }, + [STATE(388)] = { + [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(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), + [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(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), + [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(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), + [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(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(392)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_EQ] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_DQUOTE] = ACTIONS(1724), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1724), + [anon_sym_PERCENT] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_COMMA] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_DOT] = ACTIONS(1724), + [anon_sym_SLASH] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_GT] = ACTIONS(1724), + [anon_sym_QMARK] = ACTIONS(1724), + [anon_sym_AT] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_BSLASH] = ACTIONS(1724), + [anon_sym_RBRACK] = ACTIONS(1724), + [anon_sym_CARET] = ACTIONS(1724), + [anon_sym__] = ACTIONS(1724), + [anon_sym_BQUOTE] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_TILDE] = ACTIONS(1724), + [sym__word] = ACTIONS(1724), + [sym__soft_line_ending] = ACTIONS(1724), + [sym_block_continuation] = ACTIONS(1724), + [sym__block_quote_start] = ACTIONS(1724), + [sym__indented_chunk_start] = ACTIONS(1724), + [sym_atx_h1_marker] = ACTIONS(1724), + [sym_atx_h2_marker] = ACTIONS(1724), + [sym_atx_h3_marker] = ACTIONS(1724), + [sym_atx_h4_marker] = ACTIONS(1724), + [sym_atx_h5_marker] = ACTIONS(1724), + [sym_atx_h6_marker] = ACTIONS(1724), + [sym__thematic_break] = ACTIONS(1724), + [sym__list_marker_minus] = ACTIONS(1724), + [sym__list_marker_plus] = ACTIONS(1724), + [sym__list_marker_star] = ACTIONS(1724), + [sym__list_marker_parenthesis] = ACTIONS(1724), + [sym__list_marker_dot] = ACTIONS(1724), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1724), + [sym__list_marker_example] = ACTIONS(1724), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1724), + [sym__fenced_code_block_start_backtick] = ACTIONS(1724), + [sym__fenced_code_block_start_tilde] = ACTIONS(1724), + [sym__blank_line_start] = ACTIONS(1724), + [sym_minus_metadata] = ACTIONS(1724), + [sym__pipe_table_start] = ACTIONS(1724), + [sym__fenced_div_start] = ACTIONS(1724), + [sym_ref_id_specifier] = ACTIONS(1724), + [sym__display_math_state_track_marker] = ACTIONS(1724), + [sym__inline_math_state_track_marker] = ACTIONS(1724), }, [STATE(393)] = { - [aux_sym__commonmark_whitespace_token1] = ACTIONS(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), + [sym__block_close] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, [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), @@ -38123,878 +37890,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1554), [sym__inline_math_state_track_marker] = ACTIONS(1554), }, + [STATE(395)] = { + [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(396)] = { + [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(397)] = { + [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(398)] = { + [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(399)] = { + [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(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), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1486), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [ts_builtin_sym_end] = ACTIONS(1642), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1642), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_BANG] = ACTIONS(1642), + [anon_sym_DQUOTE] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1642), + [anon_sym_PERCENT] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_STAR] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DOT] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1642), + [anon_sym_GT] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1642), + [anon_sym_AT] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_BSLASH] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_CARET] = ACTIONS(1642), + [anon_sym__] = ACTIONS(1642), + [anon_sym_BQUOTE] = ACTIONS(1642), + [anon_sym_PIPE] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1642), + [sym__word] = ACTIONS(1642), + [sym__soft_line_ending] = ACTIONS(1642), + [sym__block_quote_start] = ACTIONS(1642), + [sym__indented_chunk_start] = ACTIONS(1642), + [sym_atx_h1_marker] = ACTIONS(1642), + [sym_atx_h2_marker] = ACTIONS(1642), + [sym_atx_h3_marker] = ACTIONS(1642), + [sym_atx_h4_marker] = ACTIONS(1642), + [sym_atx_h5_marker] = ACTIONS(1642), + [sym_atx_h6_marker] = ACTIONS(1642), + [sym__thematic_break] = ACTIONS(1642), + [sym__list_marker_minus] = ACTIONS(1642), + [sym__list_marker_plus] = ACTIONS(1642), + [sym__list_marker_star] = ACTIONS(1642), + [sym__list_marker_parenthesis] = ACTIONS(1642), + [sym__list_marker_dot] = ACTIONS(1642), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1642), + [sym__list_marker_example] = ACTIONS(1642), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1642), + [sym__fenced_code_block_start_backtick] = ACTIONS(1642), + [sym__fenced_code_block_start_tilde] = ACTIONS(1642), + [sym__blank_line_start] = ACTIONS(1642), + [sym_minus_metadata] = ACTIONS(1642), + [sym__pipe_table_start] = ACTIONS(1642), + [sym__fenced_div_start] = ACTIONS(1642), + [sym_ref_id_specifier] = ACTIONS(1642), + [sym__display_math_state_track_marker] = ACTIONS(1642), + [sym__inline_math_state_track_marker] = ACTIONS(1642), }, [STATE(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym__block_close] = ACTIONS(1434), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym__block_close] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym__block_close] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), }, [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), + [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(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym__block_close] = ACTIONS(1482), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), }, [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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PERCENT] = ACTIONS(1486), + [anon_sym_AMP] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1486), + [anon_sym_SLASH] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1486), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_AT] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_BSLASH] = ACTIONS(1486), + [anon_sym_RBRACK] = ACTIONS(1486), + [anon_sym_CARET] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1486), + [anon_sym_BQUOTE] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [sym__word] = ACTIONS(1486), + [sym__soft_line_ending] = ACTIONS(1486), + [sym__block_close] = ACTIONS(1486), + [sym__block_quote_start] = ACTIONS(1486), + [sym__indented_chunk_start] = ACTIONS(1486), + [sym_atx_h1_marker] = ACTIONS(1486), + [sym_atx_h2_marker] = ACTIONS(1486), + [sym_atx_h3_marker] = ACTIONS(1486), + [sym_atx_h4_marker] = ACTIONS(1486), + [sym_atx_h5_marker] = ACTIONS(1486), + [sym_atx_h6_marker] = ACTIONS(1486), + [sym__thematic_break] = ACTIONS(1486), + [sym__list_marker_minus] = ACTIONS(1486), + [sym__list_marker_plus] = ACTIONS(1486), + [sym__list_marker_star] = ACTIONS(1486), + [sym__list_marker_parenthesis] = ACTIONS(1486), + [sym__list_marker_dot] = ACTIONS(1486), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1486), + [sym__list_marker_example] = ACTIONS(1486), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1486), + [sym__fenced_code_block_start_backtick] = ACTIONS(1486), + [sym__fenced_code_block_start_tilde] = ACTIONS(1486), + [sym__blank_line_start] = ACTIONS(1486), + [sym_minus_metadata] = ACTIONS(1486), + [sym__pipe_table_start] = ACTIONS(1486), + [sym__fenced_div_start] = ACTIONS(1486), + [sym_ref_id_specifier] = ACTIONS(1486), + [sym__display_math_state_track_marker] = ACTIONS(1486), + [sym__inline_math_state_track_marker] = ACTIONS(1486), }, [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), + [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(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), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DQUOTE] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1490), + [anon_sym_BQUOTE] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [sym__word] = ACTIONS(1490), + [sym__soft_line_ending] = ACTIONS(1490), + [sym__block_close] = ACTIONS(1490), + [sym__block_quote_start] = ACTIONS(1490), + [sym__indented_chunk_start] = ACTIONS(1490), + [sym_atx_h1_marker] = ACTIONS(1490), + [sym_atx_h2_marker] = ACTIONS(1490), + [sym_atx_h3_marker] = ACTIONS(1490), + [sym_atx_h4_marker] = ACTIONS(1490), + [sym_atx_h5_marker] = ACTIONS(1490), + [sym_atx_h6_marker] = ACTIONS(1490), + [sym__thematic_break] = ACTIONS(1490), + [sym__list_marker_minus] = ACTIONS(1490), + [sym__list_marker_plus] = ACTIONS(1490), + [sym__list_marker_star] = ACTIONS(1490), + [sym__list_marker_parenthesis] = ACTIONS(1490), + [sym__list_marker_dot] = ACTIONS(1490), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1490), + [sym__list_marker_example] = ACTIONS(1490), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1490), + [sym__fenced_code_block_start_backtick] = ACTIONS(1490), + [sym__fenced_code_block_start_tilde] = ACTIONS(1490), + [sym__blank_line_start] = ACTIONS(1490), + [sym_minus_metadata] = ACTIONS(1490), + [sym__pipe_table_start] = ACTIONS(1490), + [sym__fenced_div_start] = ACTIONS(1490), + [sym_ref_id_specifier] = ACTIONS(1490), + [sym__display_math_state_track_marker] = ACTIONS(1490), + [sym__inline_math_state_track_marker] = ACTIONS(1490), }, [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), @@ -39061,7 +39029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1578), [sym__inline_math_state_track_marker] = ACTIONS(1578), }, - [STATE(414)] = { + [STATE(412)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(1580), [anon_sym_RBRACE] = ACTIONS(1580), @@ -39128,7 +39096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1580), [sym__inline_math_state_track_marker] = ACTIONS(1580), }, - [STATE(415)] = { + [STATE(413)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1582), [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_RBRACE] = ACTIONS(1582), @@ -39195,7 +39163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1582), [sym__inline_math_state_track_marker] = ACTIONS(1582), }, - [STATE(416)] = { + [STATE(414)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1584), [anon_sym_LBRACE] = ACTIONS(1584), [anon_sym_RBRACE] = ACTIONS(1584), @@ -39262,7 +39230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1584), [sym__inline_math_state_track_marker] = ACTIONS(1584), }, - [STATE(417)] = { + [STATE(415)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1586), [anon_sym_LBRACE] = ACTIONS(1586), [anon_sym_RBRACE] = ACTIONS(1586), @@ -39329,7 +39297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1586), [sym__inline_math_state_track_marker] = ACTIONS(1586), }, - [STATE(418)] = { + [STATE(416)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1588), [anon_sym_LBRACE] = ACTIONS(1588), [anon_sym_RBRACE] = ACTIONS(1588), @@ -39396,7 +39364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1588), [sym__inline_math_state_track_marker] = ACTIONS(1588), }, - [STATE(419)] = { + [STATE(417)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1590), [anon_sym_LBRACE] = ACTIONS(1590), [anon_sym_RBRACE] = ACTIONS(1590), @@ -39463,7 +39431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1590), [sym__inline_math_state_track_marker] = ACTIONS(1590), }, - [STATE(420)] = { + [STATE(418)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1592), [anon_sym_LBRACE] = ACTIONS(1592), [anon_sym_RBRACE] = ACTIONS(1592), @@ -39530,7 +39498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1592), [sym__inline_math_state_track_marker] = ACTIONS(1592), }, - [STATE(421)] = { + [STATE(419)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1594), [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(1594), @@ -39597,74 +39565,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(420)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1522), + [anon_sym_DQUOTE] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_DOLLAR] = ACTIONS(1522), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_DASH] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_AT] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_BSLASH] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1522), + [anon_sym_BQUOTE] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1522), + [anon_sym_TILDE] = ACTIONS(1522), + [sym__word] = ACTIONS(1522), + [sym__soft_line_ending] = ACTIONS(1522), + [sym__block_close] = ACTIONS(1522), + [sym__block_quote_start] = ACTIONS(1522), + [sym__indented_chunk_start] = ACTIONS(1522), + [sym_atx_h1_marker] = ACTIONS(1522), + [sym_atx_h2_marker] = ACTIONS(1522), + [sym_atx_h3_marker] = ACTIONS(1522), + [sym_atx_h4_marker] = ACTIONS(1522), + [sym_atx_h5_marker] = ACTIONS(1522), + [sym_atx_h6_marker] = ACTIONS(1522), + [sym__thematic_break] = ACTIONS(1522), + [sym__list_marker_minus] = ACTIONS(1522), + [sym__list_marker_plus] = ACTIONS(1522), + [sym__list_marker_star] = ACTIONS(1522), + [sym__list_marker_parenthesis] = ACTIONS(1522), + [sym__list_marker_dot] = ACTIONS(1522), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1522), + [sym__list_marker_example] = ACTIONS(1522), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1522), + [sym__fenced_code_block_start_backtick] = ACTIONS(1522), + [sym__fenced_code_block_start_tilde] = ACTIONS(1522), + [sym__blank_line_start] = ACTIONS(1522), + [sym_minus_metadata] = ACTIONS(1522), + [sym__pipe_table_start] = ACTIONS(1522), + [sym__fenced_div_start] = ACTIONS(1522), + [sym_ref_id_specifier] = ACTIONS(1522), + [sym__display_math_state_track_marker] = ACTIONS(1522), + [sym__inline_math_state_track_marker] = ACTIONS(1522), }, - [STATE(423)] = { + [STATE(421)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1598), [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1598), @@ -39731,7 +39699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1598), [sym__inline_math_state_track_marker] = ACTIONS(1598), }, - [STATE(424)] = { + [STATE(422)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1600), [anon_sym_LBRACE] = ACTIONS(1600), [anon_sym_RBRACE] = ACTIONS(1600), @@ -39798,7 +39766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1600), [sym__inline_math_state_track_marker] = ACTIONS(1600), }, - [STATE(425)] = { + [STATE(423)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1602), [anon_sym_LBRACE] = ACTIONS(1602), [anon_sym_RBRACE] = ACTIONS(1602), @@ -39865,7 +39833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1602), [sym__inline_math_state_track_marker] = ACTIONS(1602), }, - [STATE(426)] = { + [STATE(424)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(1604), [anon_sym_RBRACE] = ACTIONS(1604), @@ -39932,7 +39900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1604), [sym__inline_math_state_track_marker] = ACTIONS(1604), }, - [STATE(427)] = { + [STATE(425)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1606), [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(1606), @@ -39999,7 +39967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1606), [sym__inline_math_state_track_marker] = ACTIONS(1606), }, - [STATE(428)] = { + [STATE(426)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1608), [anon_sym_LBRACE] = ACTIONS(1608), [anon_sym_RBRACE] = ACTIONS(1608), @@ -40066,7 +40034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1608), [sym__inline_math_state_track_marker] = ACTIONS(1608), }, - [STATE(429)] = { + [STATE(427)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1610), [anon_sym_LBRACE] = ACTIONS(1610), [anon_sym_RBRACE] = ACTIONS(1610), @@ -40133,7 +40101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1610), [sym__inline_math_state_track_marker] = ACTIONS(1610), }, - [STATE(430)] = { + [STATE(428)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1612), [anon_sym_LBRACE] = ACTIONS(1612), [anon_sym_RBRACE] = ACTIONS(1612), @@ -40200,7 +40168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1612), [sym__inline_math_state_track_marker] = ACTIONS(1612), }, - [STATE(431)] = { + [STATE(429)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1614), [anon_sym_LBRACE] = ACTIONS(1614), [anon_sym_RBRACE] = ACTIONS(1614), @@ -40267,7 +40235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1614), [sym__inline_math_state_track_marker] = ACTIONS(1614), }, - [STATE(432)] = { + [STATE(430)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1616), [anon_sym_LBRACE] = ACTIONS(1616), [anon_sym_RBRACE] = ACTIONS(1616), @@ -40334,7 +40302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1616), [sym__inline_math_state_track_marker] = ACTIONS(1616), }, - [STATE(433)] = { + [STATE(431)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1618), [anon_sym_LBRACE] = ACTIONS(1618), [anon_sym_RBRACE] = ACTIONS(1618), @@ -40360,383 +40328,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(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(432)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_SQUOTE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1620), + [anon_sym_PERCENT] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_COMMA] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_DOT] = ACTIONS(1620), + [anon_sym_SLASH] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_AT] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_BSLASH] = ACTIONS(1620), + [anon_sym_RBRACK] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1620), + [anon_sym__] = ACTIONS(1620), + [anon_sym_BQUOTE] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_TILDE] = ACTIONS(1620), + [sym__word] = ACTIONS(1620), + [sym__soft_line_ending] = ACTIONS(1620), + [sym__block_close] = ACTIONS(1620), + [sym__block_quote_start] = ACTIONS(1620), + [sym__indented_chunk_start] = ACTIONS(1620), + [sym_atx_h1_marker] = ACTIONS(1620), + [sym_atx_h2_marker] = ACTIONS(1620), + [sym_atx_h3_marker] = ACTIONS(1620), + [sym_atx_h4_marker] = ACTIONS(1620), + [sym_atx_h5_marker] = ACTIONS(1620), + [sym_atx_h6_marker] = ACTIONS(1620), + [sym__thematic_break] = ACTIONS(1620), + [sym__list_marker_minus] = ACTIONS(1620), + [sym__list_marker_plus] = ACTIONS(1620), + [sym__list_marker_star] = ACTIONS(1620), + [sym__list_marker_parenthesis] = ACTIONS(1620), + [sym__list_marker_dot] = ACTIONS(1620), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), + [sym__list_marker_example] = ACTIONS(1620), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1620), + [sym__fenced_code_block_start_backtick] = ACTIONS(1620), + [sym__fenced_code_block_start_tilde] = ACTIONS(1620), + [sym__blank_line_start] = ACTIONS(1620), + [sym_minus_metadata] = ACTIONS(1620), + [sym__pipe_table_start] = ACTIONS(1620), + [sym__fenced_div_start] = ACTIONS(1620), + [sym_ref_id_specifier] = ACTIONS(1620), + [sym__display_math_state_track_marker] = ACTIONS(1620), + [sym__inline_math_state_track_marker] = ACTIONS(1620), }, - [STATE(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(433)] = { + [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(439)] = { + [STATE(434)] = { [aux_sym__commonmark_whitespace_token1] = ACTIONS(1730), [anon_sym_LBRACE] = ACTIONS(1730), [anon_sym_RBRACE] = ACTIONS(1730), @@ -40803,677 +40570,945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1730), [sym__inline_math_state_track_marker] = ACTIONS(1730), }, + [STATE(435)] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_DQUOTE] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BQUOTE] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [sym__word] = ACTIONS(1482), + [sym__soft_line_ending] = ACTIONS(1482), + [sym__block_quote_start] = ACTIONS(1482), + [sym__indented_chunk_start] = ACTIONS(1482), + [sym_atx_h1_marker] = ACTIONS(1482), + [sym_atx_h2_marker] = ACTIONS(1482), + [sym_atx_h3_marker] = ACTIONS(1482), + [sym_atx_h4_marker] = ACTIONS(1482), + [sym_atx_h5_marker] = ACTIONS(1482), + [sym_atx_h6_marker] = ACTIONS(1482), + [sym__thematic_break] = ACTIONS(1482), + [sym__list_marker_minus] = ACTIONS(1482), + [sym__list_marker_plus] = ACTIONS(1482), + [sym__list_marker_star] = ACTIONS(1482), + [sym__list_marker_parenthesis] = ACTIONS(1482), + [sym__list_marker_dot] = ACTIONS(1482), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1482), + [sym__list_marker_example] = ACTIONS(1482), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1482), + [sym__fenced_code_block_start_backtick] = ACTIONS(1482), + [sym__fenced_code_block_start_tilde] = ACTIONS(1482), + [sym__blank_line_start] = ACTIONS(1482), + [sym_minus_metadata] = ACTIONS(1482), + [sym__pipe_table_start] = ACTIONS(1482), + [sym__fenced_div_start] = ACTIONS(1482), + [sym_ref_id_specifier] = ACTIONS(1482), + [sym__display_math_state_track_marker] = ACTIONS(1482), + [sym__inline_math_state_track_marker] = ACTIONS(1482), + }, + [STATE(436)] = { + [ts_builtin_sym_end] = ACTIONS(1438), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_DQUOTE] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PERCENT] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_RPAREN] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOT] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1438), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_AT] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1438), + [anon_sym_RBRACK] = ACTIONS(1438), + [anon_sym_CARET] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BQUOTE] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_TILDE] = ACTIONS(1438), + [sym__word] = ACTIONS(1438), + [sym__soft_line_ending] = ACTIONS(1438), + [sym__block_quote_start] = ACTIONS(1438), + [sym__indented_chunk_start] = ACTIONS(1438), + [sym_atx_h1_marker] = ACTIONS(1438), + [sym_atx_h2_marker] = ACTIONS(1438), + [sym_atx_h3_marker] = ACTIONS(1438), + [sym_atx_h4_marker] = ACTIONS(1438), + [sym_atx_h5_marker] = ACTIONS(1438), + [sym_atx_h6_marker] = ACTIONS(1438), + [sym__thematic_break] = ACTIONS(1438), + [sym__list_marker_minus] = ACTIONS(1438), + [sym__list_marker_plus] = ACTIONS(1438), + [sym__list_marker_star] = ACTIONS(1438), + [sym__list_marker_parenthesis] = ACTIONS(1438), + [sym__list_marker_dot] = ACTIONS(1438), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1438), + [sym__list_marker_example] = ACTIONS(1438), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1438), + [sym__fenced_code_block_start_backtick] = ACTIONS(1438), + [sym__fenced_code_block_start_tilde] = ACTIONS(1438), + [sym__blank_line_start] = ACTIONS(1438), + [sym_minus_metadata] = ACTIONS(1438), + [sym__pipe_table_start] = ACTIONS(1438), + [sym__fenced_div_start] = ACTIONS(1438), + [sym_ref_id_specifier] = ACTIONS(1438), + [sym__display_math_state_track_marker] = ACTIONS(1438), + [sym__inline_math_state_track_marker] = ACTIONS(1438), + }, + [STATE(437)] = { + [ts_builtin_sym_end] = ACTIONS(1442), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PERCENT] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_COMMA] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_DOT] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_GT] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(1442), + [anon_sym_AT] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1442), + [anon_sym_RBRACK] = ACTIONS(1442), + [anon_sym_CARET] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BQUOTE] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1442), + [sym__word] = ACTIONS(1442), + [sym__soft_line_ending] = ACTIONS(1442), + [sym__block_quote_start] = ACTIONS(1442), + [sym__indented_chunk_start] = ACTIONS(1442), + [sym_atx_h1_marker] = ACTIONS(1442), + [sym_atx_h2_marker] = ACTIONS(1442), + [sym_atx_h3_marker] = ACTIONS(1442), + [sym_atx_h4_marker] = ACTIONS(1442), + [sym_atx_h5_marker] = ACTIONS(1442), + [sym_atx_h6_marker] = ACTIONS(1442), + [sym__thematic_break] = ACTIONS(1442), + [sym__list_marker_minus] = ACTIONS(1442), + [sym__list_marker_plus] = ACTIONS(1442), + [sym__list_marker_star] = ACTIONS(1442), + [sym__list_marker_parenthesis] = ACTIONS(1442), + [sym__list_marker_dot] = ACTIONS(1442), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1442), + [sym__list_marker_example] = ACTIONS(1442), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1442), + [sym__fenced_code_block_start_backtick] = ACTIONS(1442), + [sym__fenced_code_block_start_tilde] = ACTIONS(1442), + [sym__blank_line_start] = ACTIONS(1442), + [sym_minus_metadata] = ACTIONS(1442), + [sym__pipe_table_start] = ACTIONS(1442), + [sym__fenced_div_start] = ACTIONS(1442), + [sym_ref_id_specifier] = ACTIONS(1442), + [sym__display_math_state_track_marker] = ACTIONS(1442), + [sym__inline_math_state_track_marker] = ACTIONS(1442), + }, + [STATE(438)] = { + [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(439)] = { + [ts_builtin_sym_end] = ACTIONS(1628), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_DOT] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1628), + [anon_sym_AT] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_BSLASH] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym__] = ACTIONS(1628), + [anon_sym_BQUOTE] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_TILDE] = ACTIONS(1628), + [sym__word] = ACTIONS(1628), + [sym__soft_line_ending] = ACTIONS(1628), + [sym__block_quote_start] = ACTIONS(1628), + [sym__indented_chunk_start] = ACTIONS(1628), + [sym_atx_h1_marker] = ACTIONS(1628), + [sym_atx_h2_marker] = ACTIONS(1628), + [sym_atx_h3_marker] = ACTIONS(1628), + [sym_atx_h4_marker] = ACTIONS(1628), + [sym_atx_h5_marker] = ACTIONS(1628), + [sym_atx_h6_marker] = ACTIONS(1628), + [sym__thematic_break] = ACTIONS(1628), + [sym__list_marker_minus] = ACTIONS(1628), + [sym__list_marker_plus] = ACTIONS(1628), + [sym__list_marker_star] = ACTIONS(1628), + [sym__list_marker_parenthesis] = ACTIONS(1628), + [sym__list_marker_dot] = ACTIONS(1628), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1628), + [sym__list_marker_example] = ACTIONS(1628), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1628), + [sym__fenced_code_block_start_backtick] = ACTIONS(1628), + [sym__fenced_code_block_start_tilde] = ACTIONS(1628), + [sym__blank_line_start] = ACTIONS(1628), + [sym_minus_metadata] = ACTIONS(1628), + [sym__pipe_table_start] = ACTIONS(1628), + [sym__fenced_div_start] = ACTIONS(1628), + [sym_ref_id_specifier] = ACTIONS(1628), + [sym__display_math_state_track_marker] = ACTIONS(1628), + [sym__inline_math_state_track_marker] = ACTIONS(1628), + }, [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), + [ts_builtin_sym_end] = ACTIONS(1630), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1630), + [anon_sym_LBRACE] = ACTIONS(1630), + [anon_sym_RBRACE] = ACTIONS(1630), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DQUOTE] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1630), + [anon_sym_DOLLAR] = ACTIONS(1630), + [anon_sym_PERCENT] = ACTIONS(1630), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_LPAREN] = ACTIONS(1630), + [anon_sym_RPAREN] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_COMMA] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_DOT] = ACTIONS(1630), + [anon_sym_SLASH] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_AT] = ACTIONS(1630), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_BSLASH] = ACTIONS(1630), + [anon_sym_RBRACK] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1630), + [anon_sym__] = ACTIONS(1630), + [anon_sym_BQUOTE] = ACTIONS(1630), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_TILDE] = ACTIONS(1630), + [sym__word] = ACTIONS(1630), + [sym__soft_line_ending] = ACTIONS(1630), + [sym__block_quote_start] = ACTIONS(1630), + [sym__indented_chunk_start] = ACTIONS(1630), + [sym_atx_h1_marker] = ACTIONS(1630), + [sym_atx_h2_marker] = ACTIONS(1630), + [sym_atx_h3_marker] = ACTIONS(1630), + [sym_atx_h4_marker] = ACTIONS(1630), + [sym_atx_h5_marker] = ACTIONS(1630), + [sym_atx_h6_marker] = ACTIONS(1630), + [sym__thematic_break] = ACTIONS(1630), + [sym__list_marker_minus] = ACTIONS(1630), + [sym__list_marker_plus] = ACTIONS(1630), + [sym__list_marker_star] = ACTIONS(1630), + [sym__list_marker_parenthesis] = ACTIONS(1630), + [sym__list_marker_dot] = ACTIONS(1630), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1630), + [sym__list_marker_example] = ACTIONS(1630), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1630), + [sym__fenced_code_block_start_backtick] = ACTIONS(1630), + [sym__fenced_code_block_start_tilde] = ACTIONS(1630), + [sym__blank_line_start] = ACTIONS(1630), + [sym_minus_metadata] = ACTIONS(1630), + [sym__pipe_table_start] = ACTIONS(1630), + [sym__fenced_div_start] = ACTIONS(1630), + [sym_ref_id_specifier] = ACTIONS(1630), + [sym__display_math_state_track_marker] = ACTIONS(1630), + [sym__inline_math_state_track_marker] = ACTIONS(1630), }, [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), + [ts_builtin_sym_end] = ACTIONS(1414), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), }, [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), + [ts_builtin_sym_end] = ACTIONS(1634), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_EQ] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_BANG] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1634), + [anon_sym_PERCENT] = ACTIONS(1634), + [anon_sym_AMP] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_DOT] = ACTIONS(1634), + [anon_sym_SLASH] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1634), + [anon_sym_GT] = ACTIONS(1634), + [anon_sym_QMARK] = ACTIONS(1634), + [anon_sym_AT] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1634), + [anon_sym_BSLASH] = ACTIONS(1634), + [anon_sym_RBRACK] = ACTIONS(1634), + [anon_sym_CARET] = ACTIONS(1634), + [anon_sym__] = ACTIONS(1634), + [anon_sym_BQUOTE] = ACTIONS(1634), + [anon_sym_PIPE] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1634), + [sym__word] = ACTIONS(1634), + [sym__soft_line_ending] = ACTIONS(1634), + [sym__block_quote_start] = ACTIONS(1634), + [sym__indented_chunk_start] = ACTIONS(1634), + [sym_atx_h1_marker] = ACTIONS(1634), + [sym_atx_h2_marker] = ACTIONS(1634), + [sym_atx_h3_marker] = ACTIONS(1634), + [sym_atx_h4_marker] = ACTIONS(1634), + [sym_atx_h5_marker] = ACTIONS(1634), + [sym_atx_h6_marker] = ACTIONS(1634), + [sym__thematic_break] = ACTIONS(1634), + [sym__list_marker_minus] = ACTIONS(1634), + [sym__list_marker_plus] = ACTIONS(1634), + [sym__list_marker_star] = ACTIONS(1634), + [sym__list_marker_parenthesis] = ACTIONS(1634), + [sym__list_marker_dot] = ACTIONS(1634), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1634), + [sym__list_marker_example] = ACTIONS(1634), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1634), + [sym__fenced_code_block_start_backtick] = ACTIONS(1634), + [sym__fenced_code_block_start_tilde] = ACTIONS(1634), + [sym__blank_line_start] = ACTIONS(1634), + [sym_minus_metadata] = ACTIONS(1634), + [sym__pipe_table_start] = ACTIONS(1634), + [sym__fenced_div_start] = ACTIONS(1634), + [sym_ref_id_specifier] = ACTIONS(1634), + [sym__display_math_state_track_marker] = ACTIONS(1634), + [sym__inline_math_state_track_marker] = ACTIONS(1634), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1636), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1636), + [anon_sym_SQUOTE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_DQUOTE] = ACTIONS(1636), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1636), + [anon_sym_AT] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_BSLASH] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym__] = ACTIONS(1636), + [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(1636), + [sym__word] = ACTIONS(1636), + [sym__soft_line_ending] = ACTIONS(1636), + [sym__block_quote_start] = ACTIONS(1636), + [sym__indented_chunk_start] = ACTIONS(1636), + [sym_atx_h1_marker] = ACTIONS(1636), + [sym_atx_h2_marker] = ACTIONS(1636), + [sym_atx_h3_marker] = ACTIONS(1636), + [sym_atx_h4_marker] = ACTIONS(1636), + [sym_atx_h5_marker] = ACTIONS(1636), + [sym_atx_h6_marker] = ACTIONS(1636), + [sym__thematic_break] = ACTIONS(1636), + [sym__list_marker_minus] = ACTIONS(1636), + [sym__list_marker_plus] = ACTIONS(1636), + [sym__list_marker_star] = ACTIONS(1636), + [sym__list_marker_parenthesis] = ACTIONS(1636), + [sym__list_marker_dot] = ACTIONS(1636), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1636), + [sym__list_marker_example] = ACTIONS(1636), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1636), + [sym__fenced_code_block_start_backtick] = ACTIONS(1636), + [sym__fenced_code_block_start_tilde] = ACTIONS(1636), + [sym__blank_line_start] = ACTIONS(1636), + [sym_minus_metadata] = ACTIONS(1636), + [sym__pipe_table_start] = ACTIONS(1636), + [sym__fenced_div_start] = ACTIONS(1636), + [sym_ref_id_specifier] = ACTIONS(1636), + [sym__display_math_state_track_marker] = ACTIONS(1636), + [sym__inline_math_state_track_marker] = ACTIONS(1636), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1638), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1638), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1638), + [anon_sym_DOLLAR] = ACTIONS(1638), + [anon_sym_PERCENT] = ACTIONS(1638), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_RPAREN] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1638), + [anon_sym_BSLASH] = ACTIONS(1638), + [anon_sym_RBRACK] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1638), + [anon_sym__] = ACTIONS(1638), + [anon_sym_BQUOTE] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1638), + [sym__word] = ACTIONS(1638), + [sym__soft_line_ending] = ACTIONS(1638), + [sym__block_quote_start] = ACTIONS(1638), + [sym__indented_chunk_start] = ACTIONS(1638), + [sym_atx_h1_marker] = ACTIONS(1638), + [sym_atx_h2_marker] = ACTIONS(1638), + [sym_atx_h3_marker] = ACTIONS(1638), + [sym_atx_h4_marker] = ACTIONS(1638), + [sym_atx_h5_marker] = ACTIONS(1638), + [sym_atx_h6_marker] = ACTIONS(1638), + [sym__thematic_break] = ACTIONS(1638), + [sym__list_marker_minus] = ACTIONS(1638), + [sym__list_marker_plus] = ACTIONS(1638), + [sym__list_marker_star] = ACTIONS(1638), + [sym__list_marker_parenthesis] = ACTIONS(1638), + [sym__list_marker_dot] = ACTIONS(1638), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1638), + [sym__list_marker_example] = ACTIONS(1638), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1638), + [sym__fenced_code_block_start_backtick] = ACTIONS(1638), + [sym__fenced_code_block_start_tilde] = ACTIONS(1638), + [sym__blank_line_start] = ACTIONS(1638), + [sym_minus_metadata] = ACTIONS(1638), + [sym__pipe_table_start] = ACTIONS(1638), + [sym__fenced_div_start] = ACTIONS(1638), + [sym_ref_id_specifier] = ACTIONS(1638), + [sym__display_math_state_track_marker] = ACTIONS(1638), + [sym__inline_math_state_track_marker] = ACTIONS(1638), }, [STATE(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), + [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(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), + [ts_builtin_sym_end] = ACTIONS(1650), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1650), + [anon_sym_LBRACE] = ACTIONS(1650), + [anon_sym_RBRACE] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DQUOTE] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_DOLLAR] = ACTIONS(1650), + [anon_sym_PERCENT] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1650), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_COMMA] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_DOT] = ACTIONS(1650), + [anon_sym_SLASH] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_AT] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_BSLASH] = ACTIONS(1650), + [anon_sym_RBRACK] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1650), + [anon_sym__] = ACTIONS(1650), + [anon_sym_BQUOTE] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_TILDE] = ACTIONS(1650), + [sym__word] = ACTIONS(1650), + [sym__soft_line_ending] = ACTIONS(1650), + [sym__block_quote_start] = ACTIONS(1650), + [sym__indented_chunk_start] = ACTIONS(1650), + [sym_atx_h1_marker] = ACTIONS(1650), + [sym_atx_h2_marker] = ACTIONS(1650), + [sym_atx_h3_marker] = ACTIONS(1650), + [sym_atx_h4_marker] = ACTIONS(1650), + [sym_atx_h5_marker] = ACTIONS(1650), + [sym_atx_h6_marker] = ACTIONS(1650), + [sym__thematic_break] = ACTIONS(1650), + [sym__list_marker_minus] = ACTIONS(1650), + [sym__list_marker_plus] = ACTIONS(1650), + [sym__list_marker_star] = ACTIONS(1650), + [sym__list_marker_parenthesis] = ACTIONS(1650), + [sym__list_marker_dot] = ACTIONS(1650), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1650), + [sym__list_marker_example] = ACTIONS(1650), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1650), + [sym__fenced_code_block_start_backtick] = ACTIONS(1650), + [sym__fenced_code_block_start_tilde] = ACTIONS(1650), + [sym__blank_line_start] = ACTIONS(1650), + [sym_minus_metadata] = ACTIONS(1650), + [sym__pipe_table_start] = ACTIONS(1650), + [sym__fenced_div_start] = ACTIONS(1650), + [sym_ref_id_specifier] = ACTIONS(1650), + [sym__display_math_state_track_marker] = ACTIONS(1650), + [sym__inline_math_state_track_marker] = ACTIONS(1650), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1668), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1668), + [anon_sym_SQUOTE] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_DOT] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1668), + [anon_sym_AT] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_BSLASH] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym__] = ACTIONS(1668), + [anon_sym_BQUOTE] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_TILDE] = ACTIONS(1668), + [sym__word] = ACTIONS(1668), + [sym__soft_line_ending] = ACTIONS(1668), + [sym__block_quote_start] = ACTIONS(1668), + [sym__indented_chunk_start] = ACTIONS(1668), + [sym_atx_h1_marker] = ACTIONS(1668), + [sym_atx_h2_marker] = ACTIONS(1668), + [sym_atx_h3_marker] = ACTIONS(1668), + [sym_atx_h4_marker] = ACTIONS(1668), + [sym_atx_h5_marker] = ACTIONS(1668), + [sym_atx_h6_marker] = ACTIONS(1668), + [sym__thematic_break] = ACTIONS(1668), + [sym__list_marker_minus] = ACTIONS(1668), + [sym__list_marker_plus] = ACTIONS(1668), + [sym__list_marker_star] = ACTIONS(1668), + [sym__list_marker_parenthesis] = ACTIONS(1668), + [sym__list_marker_dot] = ACTIONS(1668), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1668), + [sym__list_marker_example] = ACTIONS(1668), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1668), + [sym__fenced_code_block_start_backtick] = ACTIONS(1668), + [sym__fenced_code_block_start_tilde] = ACTIONS(1668), + [sym__blank_line_start] = ACTIONS(1668), + [sym_minus_metadata] = ACTIONS(1668), + [sym__pipe_table_start] = ACTIONS(1668), + [sym__fenced_div_start] = ACTIONS(1668), + [sym_ref_id_specifier] = ACTIONS(1668), + [sym__display_math_state_track_marker] = ACTIONS(1668), + [sym__inline_math_state_track_marker] = ACTIONS(1668), }, [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), + [ts_builtin_sym_end] = ACTIONS(1670), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_PERCENT] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_RPAREN] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_COMMA] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1670), + [anon_sym_SLASH] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(1670), + [anon_sym_AT] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_BSLASH] = ACTIONS(1670), + [anon_sym_RBRACK] = ACTIONS(1670), + [anon_sym_CARET] = ACTIONS(1670), + [anon_sym__] = ACTIONS(1670), + [anon_sym_BQUOTE] = ACTIONS(1670), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_TILDE] = ACTIONS(1670), + [sym__word] = ACTIONS(1670), + [sym__soft_line_ending] = ACTIONS(1670), + [sym__block_quote_start] = ACTIONS(1670), + [sym__indented_chunk_start] = ACTIONS(1670), + [sym_atx_h1_marker] = ACTIONS(1670), + [sym_atx_h2_marker] = ACTIONS(1670), + [sym_atx_h3_marker] = ACTIONS(1670), + [sym_atx_h4_marker] = ACTIONS(1670), + [sym_atx_h5_marker] = ACTIONS(1670), + [sym_atx_h6_marker] = ACTIONS(1670), + [sym__thematic_break] = ACTIONS(1670), + [sym__list_marker_minus] = ACTIONS(1670), + [sym__list_marker_plus] = ACTIONS(1670), + [sym__list_marker_star] = ACTIONS(1670), + [sym__list_marker_parenthesis] = ACTIONS(1670), + [sym__list_marker_dot] = ACTIONS(1670), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1670), + [sym__list_marker_example] = ACTIONS(1670), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1670), + [sym__fenced_code_block_start_backtick] = ACTIONS(1670), + [sym__fenced_code_block_start_tilde] = ACTIONS(1670), + [sym__blank_line_start] = ACTIONS(1670), + [sym_minus_metadata] = ACTIONS(1670), + [sym__pipe_table_start] = ACTIONS(1670), + [sym__fenced_div_start] = ACTIONS(1670), + [sym_ref_id_specifier] = ACTIONS(1670), + [sym__display_math_state_track_marker] = ACTIONS(1670), + [sym__inline_math_state_track_marker] = ACTIONS(1670), }, [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), @@ -41540,1079 +41575,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1686), [sym__inline_math_state_track_marker] = ACTIONS(1686), }, + [STATE(450)] = { + [ts_builtin_sym_end] = ACTIONS(1702), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_EQ] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_DQUOTE] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1702), + [anon_sym_PERCENT] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_RPAREN] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_COMMA] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_DOT] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1702), + [anon_sym_AT] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_BSLASH] = ACTIONS(1702), + [anon_sym_RBRACK] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_BQUOTE] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_TILDE] = ACTIONS(1702), + [sym__word] = ACTIONS(1702), + [sym__soft_line_ending] = ACTIONS(1702), + [sym__block_quote_start] = ACTIONS(1702), + [sym__indented_chunk_start] = ACTIONS(1702), + [sym_atx_h1_marker] = ACTIONS(1702), + [sym_atx_h2_marker] = ACTIONS(1702), + [sym_atx_h3_marker] = ACTIONS(1702), + [sym_atx_h4_marker] = ACTIONS(1702), + [sym_atx_h5_marker] = ACTIONS(1702), + [sym_atx_h6_marker] = ACTIONS(1702), + [sym__thematic_break] = ACTIONS(1702), + [sym__list_marker_minus] = ACTIONS(1702), + [sym__list_marker_plus] = ACTIONS(1702), + [sym__list_marker_star] = ACTIONS(1702), + [sym__list_marker_parenthesis] = ACTIONS(1702), + [sym__list_marker_dot] = ACTIONS(1702), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1702), + [sym__list_marker_example] = ACTIONS(1702), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1702), + [sym__fenced_code_block_start_backtick] = ACTIONS(1702), + [sym__fenced_code_block_start_tilde] = ACTIONS(1702), + [sym__blank_line_start] = ACTIONS(1702), + [sym_minus_metadata] = ACTIONS(1702), + [sym__pipe_table_start] = ACTIONS(1702), + [sym__fenced_div_start] = ACTIONS(1702), + [sym_ref_id_specifier] = ACTIONS(1702), + [sym__display_math_state_track_marker] = ACTIONS(1702), + [sym__inline_math_state_track_marker] = ACTIONS(1702), + }, [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), + [ts_builtin_sym_end] = ACTIONS(1708), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1708), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_DQUOTE] = ACTIONS(1708), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_PERCENT] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_RPAREN] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1708), + [anon_sym_COMMA] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_DOT] = ACTIONS(1708), + [anon_sym_SLASH] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_GT] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1708), + [anon_sym_AT] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_BSLASH] = ACTIONS(1708), + [anon_sym_RBRACK] = ACTIONS(1708), + [anon_sym_CARET] = ACTIONS(1708), + [anon_sym__] = ACTIONS(1708), + [anon_sym_BQUOTE] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_TILDE] = ACTIONS(1708), + [sym__word] = ACTIONS(1708), + [sym__soft_line_ending] = ACTIONS(1708), + [sym__block_quote_start] = ACTIONS(1708), + [sym__indented_chunk_start] = ACTIONS(1708), + [sym_atx_h1_marker] = ACTIONS(1708), + [sym_atx_h2_marker] = ACTIONS(1708), + [sym_atx_h3_marker] = ACTIONS(1708), + [sym_atx_h4_marker] = ACTIONS(1708), + [sym_atx_h5_marker] = ACTIONS(1708), + [sym_atx_h6_marker] = ACTIONS(1708), + [sym__thematic_break] = ACTIONS(1708), + [sym__list_marker_minus] = ACTIONS(1708), + [sym__list_marker_plus] = ACTIONS(1708), + [sym__list_marker_star] = ACTIONS(1708), + [sym__list_marker_parenthesis] = ACTIONS(1708), + [sym__list_marker_dot] = ACTIONS(1708), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1708), + [sym__list_marker_example] = ACTIONS(1708), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1708), + [sym__fenced_code_block_start_backtick] = ACTIONS(1708), + [sym__fenced_code_block_start_tilde] = ACTIONS(1708), + [sym__blank_line_start] = ACTIONS(1708), + [sym_minus_metadata] = ACTIONS(1708), + [sym__pipe_table_start] = ACTIONS(1708), + [sym__fenced_div_start] = ACTIONS(1708), + [sym_ref_id_specifier] = ACTIONS(1708), + [sym__display_math_state_track_marker] = ACTIONS(1708), + [sym__inline_math_state_track_marker] = ACTIONS(1708), }, [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), + [ts_builtin_sym_end] = ACTIONS(1714), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_EQ] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_DQUOTE] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_DOLLAR] = ACTIONS(1714), + [anon_sym_PERCENT] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_RPAREN] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_PLUS] = ACTIONS(1714), + [anon_sym_COMMA] = ACTIONS(1714), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_DOT] = ACTIONS(1714), + [anon_sym_SLASH] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_GT] = ACTIONS(1714), + [anon_sym_QMARK] = ACTIONS(1714), + [anon_sym_AT] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_BSLASH] = ACTIONS(1714), + [anon_sym_RBRACK] = ACTIONS(1714), + [anon_sym_CARET] = ACTIONS(1714), + [anon_sym__] = ACTIONS(1714), + [anon_sym_BQUOTE] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_TILDE] = ACTIONS(1714), + [sym__word] = ACTIONS(1714), + [sym__soft_line_ending] = ACTIONS(1714), + [sym__block_quote_start] = ACTIONS(1714), + [sym__indented_chunk_start] = ACTIONS(1714), + [sym_atx_h1_marker] = ACTIONS(1714), + [sym_atx_h2_marker] = ACTIONS(1714), + [sym_atx_h3_marker] = ACTIONS(1714), + [sym_atx_h4_marker] = ACTIONS(1714), + [sym_atx_h5_marker] = ACTIONS(1714), + [sym_atx_h6_marker] = ACTIONS(1714), + [sym__thematic_break] = ACTIONS(1714), + [sym__list_marker_minus] = ACTIONS(1714), + [sym__list_marker_plus] = ACTIONS(1714), + [sym__list_marker_star] = ACTIONS(1714), + [sym__list_marker_parenthesis] = ACTIONS(1714), + [sym__list_marker_dot] = ACTIONS(1714), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1714), + [sym__list_marker_example] = ACTIONS(1714), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1714), + [sym__fenced_code_block_start_backtick] = ACTIONS(1714), + [sym__fenced_code_block_start_tilde] = ACTIONS(1714), + [sym__blank_line_start] = ACTIONS(1714), + [sym_minus_metadata] = ACTIONS(1714), + [sym__pipe_table_start] = ACTIONS(1714), + [sym__fenced_div_start] = ACTIONS(1714), + [sym_ref_id_specifier] = ACTIONS(1714), + [sym__display_math_state_track_marker] = ACTIONS(1714), + [sym__inline_math_state_track_marker] = ACTIONS(1714), }, [STATE(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), + [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(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), + [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(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), + [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(456)] = { + [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(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), + [ts_builtin_sym_end] = ACTIONS(1672), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1672), + [anon_sym_SQUOTE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_BSLASH] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym__] = ACTIONS(1672), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_TILDE] = ACTIONS(1672), + [sym__word] = ACTIONS(1672), + [sym__soft_line_ending] = ACTIONS(1672), + [sym__block_quote_start] = ACTIONS(1672), + [sym__indented_chunk_start] = ACTIONS(1672), + [sym_atx_h1_marker] = ACTIONS(1672), + [sym_atx_h2_marker] = ACTIONS(1672), + [sym_atx_h3_marker] = ACTIONS(1672), + [sym_atx_h4_marker] = ACTIONS(1672), + [sym_atx_h5_marker] = ACTIONS(1672), + [sym_atx_h6_marker] = ACTIONS(1672), + [sym__thematic_break] = ACTIONS(1672), + [sym__list_marker_minus] = ACTIONS(1672), + [sym__list_marker_plus] = ACTIONS(1672), + [sym__list_marker_star] = ACTIONS(1672), + [sym__list_marker_parenthesis] = ACTIONS(1672), + [sym__list_marker_dot] = ACTIONS(1672), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1672), + [sym__list_marker_example] = ACTIONS(1672), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1672), + [sym__fenced_code_block_start_backtick] = ACTIONS(1672), + [sym__fenced_code_block_start_tilde] = ACTIONS(1672), + [sym__blank_line_start] = ACTIONS(1672), + [sym_minus_metadata] = ACTIONS(1672), + [sym__pipe_table_start] = ACTIONS(1672), + [sym__fenced_div_start] = ACTIONS(1672), + [sym_ref_id_specifier] = ACTIONS(1672), + [sym__display_math_state_track_marker] = ACTIONS(1672), + [sym__inline_math_state_track_marker] = ACTIONS(1672), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1470), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1470), + [anon_sym_RBRACE] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PERCENT] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1470), + [anon_sym_RPAREN] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_COMMA] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1470), + [anon_sym_GT] = ACTIONS(1470), + [anon_sym_QMARK] = ACTIONS(1470), + [anon_sym_AT] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1470), + [anon_sym_RBRACK] = ACTIONS(1470), + [anon_sym_CARET] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BQUOTE] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1470), + [anon_sym_TILDE] = ACTIONS(1470), + [sym__word] = ACTIONS(1470), + [sym__soft_line_ending] = ACTIONS(1470), + [sym__block_quote_start] = ACTIONS(1470), + [sym__indented_chunk_start] = ACTIONS(1470), + [sym_atx_h1_marker] = ACTIONS(1470), + [sym_atx_h2_marker] = ACTIONS(1470), + [sym_atx_h3_marker] = ACTIONS(1470), + [sym_atx_h4_marker] = ACTIONS(1470), + [sym_atx_h5_marker] = ACTIONS(1470), + [sym_atx_h6_marker] = ACTIONS(1470), + [sym__thematic_break] = ACTIONS(1470), + [sym__list_marker_minus] = ACTIONS(1470), + [sym__list_marker_plus] = ACTIONS(1470), + [sym__list_marker_star] = ACTIONS(1470), + [sym__list_marker_parenthesis] = ACTIONS(1470), + [sym__list_marker_dot] = ACTIONS(1470), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1470), + [sym__list_marker_example] = ACTIONS(1470), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1470), + [sym__fenced_code_block_start_backtick] = ACTIONS(1470), + [sym__fenced_code_block_start_tilde] = ACTIONS(1470), + [sym__blank_line_start] = ACTIONS(1470), + [sym_minus_metadata] = ACTIONS(1470), + [sym__pipe_table_start] = ACTIONS(1470), + [sym__fenced_div_start] = ACTIONS(1470), + [sym_ref_id_specifier] = ACTIONS(1470), + [sym__display_math_state_track_marker] = ACTIONS(1470), + [sym__inline_math_state_track_marker] = ACTIONS(1470), }, [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), @@ -42679,7 +42245,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1554), [sym__inline_math_state_track_marker] = ACTIONS(1554), }, - [STATE(468)] = { + [STATE(460)] = { + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DQUOTE] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym__] = ACTIONS(1414), + [anon_sym_BQUOTE] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [sym__word] = ACTIONS(1414), + [sym__soft_line_ending] = ACTIONS(1414), + [sym__block_close] = ACTIONS(1414), + [sym__block_quote_start] = ACTIONS(1414), + [sym__indented_chunk_start] = ACTIONS(1414), + [sym_atx_h1_marker] = ACTIONS(1414), + [sym_atx_h2_marker] = ACTIONS(1414), + [sym_atx_h3_marker] = ACTIONS(1414), + [sym_atx_h4_marker] = ACTIONS(1414), + [sym_atx_h5_marker] = ACTIONS(1414), + [sym_atx_h6_marker] = ACTIONS(1414), + [sym__thematic_break] = ACTIONS(1414), + [sym__list_marker_minus] = ACTIONS(1414), + [sym__list_marker_plus] = ACTIONS(1414), + [sym__list_marker_star] = ACTIONS(1414), + [sym__list_marker_parenthesis] = ACTIONS(1414), + [sym__list_marker_dot] = ACTIONS(1414), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1414), + [sym__list_marker_example] = ACTIONS(1414), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1414), + [sym__fenced_code_block_start_backtick] = ACTIONS(1414), + [sym__fenced_code_block_start_tilde] = ACTIONS(1414), + [sym__blank_line_start] = ACTIONS(1414), + [sym_minus_metadata] = ACTIONS(1414), + [sym__pipe_table_start] = ACTIONS(1414), + [sym__fenced_div_start] = ACTIONS(1414), + [sym_ref_id_specifier] = ACTIONS(1414), + [sym__display_math_state_track_marker] = ACTIONS(1414), + [sym__inline_math_state_track_marker] = ACTIONS(1414), + }, + [STATE(461)] = { [ts_builtin_sym_end] = ACTIONS(1556), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1556), [anon_sym_LBRACE] = ACTIONS(1556), @@ -42746,7 +42379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1556), [sym__inline_math_state_track_marker] = ACTIONS(1556), }, - [STATE(469)] = { + [STATE(462)] = { [ts_builtin_sym_end] = ACTIONS(1558), [aux_sym__commonmark_whitespace_token1] = ACTIONS(1558), [anon_sym_LBRACE] = ACTIONS(1558), @@ -42813,608 +42446,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__display_math_state_track_marker] = ACTIONS(1558), [sym__inline_math_state_track_marker] = ACTIONS(1558), }, + [STATE(463)] = { + [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(464)] = { + [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(465)] = { + [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(466)] = { + [ts_builtin_sym_end] = ACTIONS(1566), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1566), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_RBRACE] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_DQUOTE] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_DOLLAR] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_RPAREN] = ACTIONS(1566), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_PLUS] = ACTIONS(1566), + [anon_sym_COMMA] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_QMARK] = ACTIONS(1566), + [anon_sym_AT] = ACTIONS(1566), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_BSLASH] = ACTIONS(1566), + [anon_sym_RBRACK] = ACTIONS(1566), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym__] = ACTIONS(1566), + [anon_sym_BQUOTE] = ACTIONS(1566), + [anon_sym_PIPE] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [sym__word] = ACTIONS(1566), + [sym__soft_line_ending] = ACTIONS(1566), + [sym__block_quote_start] = ACTIONS(1566), + [sym__indented_chunk_start] = ACTIONS(1566), + [sym_atx_h1_marker] = ACTIONS(1566), + [sym_atx_h2_marker] = ACTIONS(1566), + [sym_atx_h3_marker] = ACTIONS(1566), + [sym_atx_h4_marker] = ACTIONS(1566), + [sym_atx_h5_marker] = ACTIONS(1566), + [sym_atx_h6_marker] = ACTIONS(1566), + [sym__thematic_break] = ACTIONS(1566), + [sym__list_marker_minus] = ACTIONS(1566), + [sym__list_marker_plus] = ACTIONS(1566), + [sym__list_marker_star] = ACTIONS(1566), + [sym__list_marker_parenthesis] = ACTIONS(1566), + [sym__list_marker_dot] = ACTIONS(1566), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1566), + [sym__list_marker_example] = ACTIONS(1566), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1566), + [sym__fenced_code_block_start_backtick] = ACTIONS(1566), + [sym__fenced_code_block_start_tilde] = ACTIONS(1566), + [sym__blank_line_start] = ACTIONS(1566), + [sym_minus_metadata] = ACTIONS(1566), + [sym__pipe_table_start] = ACTIONS(1566), + [sym__fenced_div_start] = ACTIONS(1566), + [sym_ref_id_specifier] = ACTIONS(1566), + [sym__display_math_state_track_marker] = ACTIONS(1566), + [sym__inline_math_state_track_marker] = ACTIONS(1566), + }, + [STATE(467)] = { + [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(468)] = { + [ts_builtin_sym_end] = ACTIONS(1434), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_RPAREN] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_AT] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1434), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_CARET] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BQUOTE] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1434), + [sym__word] = ACTIONS(1434), + [sym__soft_line_ending] = ACTIONS(1434), + [sym__block_quote_start] = ACTIONS(1434), + [sym__indented_chunk_start] = ACTIONS(1434), + [sym_atx_h1_marker] = ACTIONS(1434), + [sym_atx_h2_marker] = ACTIONS(1434), + [sym_atx_h3_marker] = ACTIONS(1434), + [sym_atx_h4_marker] = ACTIONS(1434), + [sym_atx_h5_marker] = ACTIONS(1434), + [sym_atx_h6_marker] = ACTIONS(1434), + [sym__thematic_break] = ACTIONS(1434), + [sym__list_marker_minus] = ACTIONS(1434), + [sym__list_marker_plus] = ACTIONS(1434), + [sym__list_marker_star] = ACTIONS(1434), + [sym__list_marker_parenthesis] = ACTIONS(1434), + [sym__list_marker_dot] = ACTIONS(1434), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1434), + [sym__list_marker_example] = ACTIONS(1434), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1434), + [sym__fenced_code_block_start_backtick] = ACTIONS(1434), + [sym__fenced_code_block_start_tilde] = ACTIONS(1434), + [sym__blank_line_start] = ACTIONS(1434), + [sym_minus_metadata] = ACTIONS(1434), + [sym__pipe_table_start] = ACTIONS(1434), + [sym__fenced_div_start] = ACTIONS(1434), + [sym_ref_id_specifier] = ACTIONS(1434), + [sym__display_math_state_track_marker] = ACTIONS(1434), + [sym__inline_math_state_track_marker] = ACTIONS(1434), + }, + [STATE(469)] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_DQUOTE] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PERCENT] = ACTIONS(1474), + [anon_sym_AMP] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_RPAREN] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1474), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_AT] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1474), + [anon_sym_RBRACK] = ACTIONS(1474), + [anon_sym_CARET] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BQUOTE] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [sym__word] = ACTIONS(1474), + [sym__soft_line_ending] = ACTIONS(1474), + [sym__block_quote_start] = ACTIONS(1474), + [sym__indented_chunk_start] = ACTIONS(1474), + [sym_atx_h1_marker] = ACTIONS(1474), + [sym_atx_h2_marker] = ACTIONS(1474), + [sym_atx_h3_marker] = ACTIONS(1474), + [sym_atx_h4_marker] = ACTIONS(1474), + [sym_atx_h5_marker] = ACTIONS(1474), + [sym_atx_h6_marker] = ACTIONS(1474), + [sym__thematic_break] = ACTIONS(1474), + [sym__list_marker_minus] = ACTIONS(1474), + [sym__list_marker_plus] = ACTIONS(1474), + [sym__list_marker_star] = ACTIONS(1474), + [sym__list_marker_parenthesis] = ACTIONS(1474), + [sym__list_marker_dot] = ACTIONS(1474), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1474), + [sym__list_marker_example] = ACTIONS(1474), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1474), + [sym__fenced_code_block_start_backtick] = ACTIONS(1474), + [sym__fenced_code_block_start_tilde] = ACTIONS(1474), + [sym__blank_line_start] = ACTIONS(1474), + [sym_minus_metadata] = ACTIONS(1474), + [sym__pipe_table_start] = ACTIONS(1474), + [sym__fenced_div_start] = ACTIONS(1474), + [sym_ref_id_specifier] = ACTIONS(1474), + [sym__display_math_state_track_marker] = ACTIONS(1474), + [sym__inline_math_state_track_marker] = ACTIONS(1474), + }, [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), + [ts_builtin_sym_end] = ACTIONS(1674), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1674), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_BANG] = ACTIONS(1674), + [anon_sym_DQUOTE] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1674), + [anon_sym_PERCENT] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_COMMA] = ACTIONS(1674), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_DOT] = ACTIONS(1674), + [anon_sym_SLASH] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1674), + [anon_sym_BSLASH] = ACTIONS(1674), + [anon_sym_RBRACK] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1674), + [anon_sym__] = ACTIONS(1674), + [anon_sym_BQUOTE] = ACTIONS(1674), + [anon_sym_PIPE] = ACTIONS(1674), + [anon_sym_TILDE] = ACTIONS(1674), + [sym__word] = ACTIONS(1674), + [sym__soft_line_ending] = ACTIONS(1674), + [sym__block_quote_start] = ACTIONS(1674), + [sym__indented_chunk_start] = ACTIONS(1674), + [sym_atx_h1_marker] = ACTIONS(1674), + [sym_atx_h2_marker] = ACTIONS(1674), + [sym_atx_h3_marker] = ACTIONS(1674), + [sym_atx_h4_marker] = ACTIONS(1674), + [sym_atx_h5_marker] = ACTIONS(1674), + [sym_atx_h6_marker] = ACTIONS(1674), + [sym__thematic_break] = ACTIONS(1674), + [sym__list_marker_minus] = ACTIONS(1674), + [sym__list_marker_plus] = ACTIONS(1674), + [sym__list_marker_star] = ACTIONS(1674), + [sym__list_marker_parenthesis] = ACTIONS(1674), + [sym__list_marker_dot] = ACTIONS(1674), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1674), + [sym__list_marker_example] = ACTIONS(1674), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1674), + [sym__fenced_code_block_start_backtick] = ACTIONS(1674), + [sym__fenced_code_block_start_tilde] = ACTIONS(1674), + [sym__blank_line_start] = ACTIONS(1674), + [sym_minus_metadata] = ACTIONS(1674), + [sym__pipe_table_start] = ACTIONS(1674), + [sym__fenced_div_start] = ACTIONS(1674), + [sym_ref_id_specifier] = ACTIONS(1674), + [sym__display_math_state_track_marker] = ACTIONS(1674), + [sym__inline_math_state_track_marker] = ACTIONS(1674), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(1478), + [aux_sym__commonmark_whitespace_token1] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_DQUOTE] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PERCENT] = ACTIONS(1478), + [anon_sym_AMP] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_RPAREN] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1478), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_AT] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1478), + [anon_sym_RBRACK] = ACTIONS(1478), + [anon_sym_CARET] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BQUOTE] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [sym__word] = ACTIONS(1478), + [sym__soft_line_ending] = ACTIONS(1478), + [sym__block_quote_start] = ACTIONS(1478), + [sym__indented_chunk_start] = ACTIONS(1478), + [sym_atx_h1_marker] = ACTIONS(1478), + [sym_atx_h2_marker] = ACTIONS(1478), + [sym_atx_h3_marker] = ACTIONS(1478), + [sym_atx_h4_marker] = ACTIONS(1478), + [sym_atx_h5_marker] = ACTIONS(1478), + [sym_atx_h6_marker] = ACTIONS(1478), + [sym__thematic_break] = ACTIONS(1478), + [sym__list_marker_minus] = ACTIONS(1478), + [sym__list_marker_plus] = ACTIONS(1478), + [sym__list_marker_star] = ACTIONS(1478), + [sym__list_marker_parenthesis] = ACTIONS(1478), + [sym__list_marker_dot] = ACTIONS(1478), + [sym__list_marker_minus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_plus_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_star_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_dot_dont_interrupt] = ACTIONS(1478), + [sym__list_marker_example] = ACTIONS(1478), + [sym__list_marker_example_dont_interrupt] = ACTIONS(1478), + [sym__fenced_code_block_start_backtick] = ACTIONS(1478), + [sym__fenced_code_block_start_tilde] = ACTIONS(1478), + [sym__blank_line_start] = ACTIONS(1478), + [sym_minus_metadata] = ACTIONS(1478), + [sym__pipe_table_start] = ACTIONS(1478), + [sym__fenced_div_start] = ACTIONS(1478), + [sym_ref_id_specifier] = ACTIONS(1478), + [sym__display_math_state_track_marker] = ACTIONS(1478), + [sym__inline_math_state_track_marker] = ACTIONS(1478), }, [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), + [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), }, }; @@ -43424,26 +43124,326 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__commonmark_whitespace_token1, ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1740), 1, - anon_sym_PIPE, + ACTIONS(1740), 1, + anon_sym_PIPE, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + STATE(478), 1, + aux_sym_pipe_table_row_repeat1, + STATE(580), 1, + sym__whitespace, + STATE(767), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(858), 1, + sym_pipe_table_row, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1742), 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, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_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, + [78] = 15, + ACTIONS(1748), 1, + sym_raw_specifier, + ACTIONS(1750), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1754), 1, + anon_sym_RBRACE, + ACTIONS(1756), 1, + sym_commonmark_name, + ACTIONS(1758), 1, + sym_id_specifier, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + STATE(666), 1, + sym__last_token_punctuation, + STATE(696), 1, + sym__commonmark_whitespace, + STATE(704), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(728), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(786), 1, + sym__attribute, + STATE(792), 1, + aux_sym_commonmark_attribute_repeat3, + ACTIONS(1762), 6, + anon_sym_EQ, + anon_sym_POUND, + anon_sym_DOT, + anon_sym_LT, + anon_sym__, + sym__word, + ACTIONS(1752), 29, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [157] = 12, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1766), 1, + aux_sym__commonmark_whitespace_token1, + STATE(477), 1, + aux_sym_pipe_table_row_repeat1, + STATE(518), 1, + sym__whitespace, + STATE(759), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1768), 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, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, + anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_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, + [229] = 8, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1766), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1772), 1, + anon_sym_BSLASH, + STATE(490), 1, + sym__last_token_punctuation, + ACTIONS(1774), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(489), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1770), 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, + [293] = 12, + ACTIONS(1779), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1785), 1, + anon_sym_BSLASH, + ACTIONS(1790), 1, + sym__code_span_start, + ACTIONS(1793), 1, + sym__latex_span_start, + STATE(477), 1, + aux_sym_pipe_table_row_repeat1, + STATE(570), 1, + sym__whitespace, + STATE(837), 1, + sym_pipe_table_cell, + STATE(979), 1, + sym__pipe_table_cell_contents, + STATE(546), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1788), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + ACTIONS(1776), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1782), 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, + [365] = 12, + ACTIONS(1738), 1, + anon_sym_BSLASH, ACTIONS(1744), 1, sym__code_span_start, ACTIONS(1746), 1, sym__latex_span_start, - STATE(483), 1, + ACTIONS(1766), 1, + aux_sym__commonmark_whitespace_token1, + STATE(477), 1, aux_sym_pipe_table_row_repeat1, - STATE(576), 1, + STATE(509), 1, sym__whitespace, - STATE(765), 1, + STATE(772), 1, sym_pipe_table_cell, - STATE(782), 1, + STATE(779), 1, sym__pipe_table_cell_contents, - STATE(840), 1, - sym_pipe_table_row, - STATE(493), 2, + STATE(487), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1742), 3, + ACTIONS(1796), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -43483,48 +43483,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [78] = 15, - ACTIONS(1748), 1, - sym_raw_specifier, - ACTIONS(1750), 1, + [437] = 12, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1766), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1754), 1, + STATE(477), 1, + aux_sym_pipe_table_row_repeat1, + STATE(510), 1, + sym__whitespace, + STATE(754), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + 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, - ACTIONS(1756), 1, - sym_commonmark_name, - ACTIONS(1758), 1, - sym_id_specifier, - ACTIONS(1760), 1, - sym_class_specifier, - ACTIONS(1764), 1, - sym_key_value_key, - STATE(667), 1, - sym__last_token_punctuation, - STATE(704), 1, - sym__commonmark_whitespace, - STATE(708), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(745), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(784), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(790), 1, - sym__attribute, - ACTIONS(1762), 6, anon_sym_EQ, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, + anon_sym_DOLLAR, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_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__, - sym__word, - ACTIONS(1752), 29, + anon_sym_BQUOTE, + anon_sym_TILDE, + [509] = 12, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + STATE(475), 1, + aux_sym_pipe_table_row_repeat1, + STATE(583), 1, + sym__whitespace, + STATE(754), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1800), 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, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_DQUOTE, + anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, anon_sym_AMP, @@ -43534,49 +43589,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH, + anon_sym_DOT, anon_sym_SLASH, anon_sym_COLON, anon_sym_SEMI, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, + anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - [157] = 12, - ACTIONS(1769), 1, + [581] = 13, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1775), 1, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(1780), 1, + ACTIONS(1808), 1, + anon_sym_PIPE, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1783), 1, + ACTIONS(1812), 1, sym__latex_span_start, - STATE(481), 1, + STATE(513), 1, aux_sym_pipe_table_row_repeat1, - STATE(577), 1, + STATE(568), 1, sym__whitespace, - STATE(839), 1, + STATE(816), 1, sym_pipe_table_cell, - STATE(910), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(559), 2, + STATE(980), 1, + sym_pipe_table_row, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1778), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1766), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1772), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43607,36 +43663,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [229] = 12, - ACTIONS(1738), 1, + [654] = 13, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(1744), 1, + ACTIONS(1808), 1, + anon_sym_PIPE, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1746), 1, + ACTIONS(1812), 1, sym__latex_span_start, - ACTIONS(1786), 1, - aux_sym__commonmark_whitespace_token1, - STATE(481), 1, + STATE(513), 1, aux_sym_pipe_table_row_repeat1, - STATE(521), 1, + STATE(568), 1, sym__whitespace, - STATE(755), 1, + STATE(816), 1, sym_pipe_table_cell, - STATE(782), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(493), 2, + STATE(978), 1, + sym_pipe_table_row, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1788), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1732), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1736), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43667,36 +43723,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [301] = 12, - ACTIONS(1738), 1, + [727] = 11, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1820), 1, + sym__line_ending, + STATE(457), 1, + sym__newline, + STATE(602), 1, + sym__whitespace, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(719), 1, + sym__atx_heading_content, + STATE(880), 1, + sym__qmd_attribute, + STATE(886), 1, + sym__atx_heading_line, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 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, anon_sym_BSLASH, - ACTIONS(1744), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [796] = 11, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1820), 1, + sym__line_ending, + STATE(347), 1, + sym__newline, + STATE(602), 1, + sym__whitespace, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(731), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(894), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 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, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [865] = 11, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1820), 1, + sym__line_ending, + STATE(350), 1, + sym__newline, + STATE(602), 1, + sym__whitespace, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(738), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(898), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 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, + anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [934] = 13, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1808), 1, + anon_sym_PIPE, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1746), 1, + ACTIONS(1812), 1, sym__latex_span_start, - ACTIONS(1786), 1, - aux_sym__commonmark_whitespace_token1, - STATE(481), 1, + STATE(513), 1, aux_sym_pipe_table_row_repeat1, - STATE(515), 1, + STATE(568), 1, sym__whitespace, - STATE(758), 1, + STATE(816), 1, sym_pipe_table_cell, - STATE(782), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(493), 2, + STATE(902), 1, + sym_pipe_table_row, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1790), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1732), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1736), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -43727,28 +43957,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [373] = 8, + [1007] = 7, ACTIONS(1744), 1, sym__code_span_start, ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1786), 1, + ACTIONS(1766), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1794), 1, + ACTIONS(1772), 1, anon_sym_BSLASH, - STATE(489), 1, - sym__last_token_punctuation, - ACTIONS(1796), 4, + ACTIONS(1774), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_PIPE, - STATE(508), 4, + STATE(489), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1792), 34, + ACTIONS(1770), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -43783,36 +44011,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [437] = 12, - ACTIONS(1738), 1, + [1068] = 11, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1820), 1, + sym__line_ending, + STATE(319), 1, + sym__newline, + STATE(602), 1, + sym__whitespace, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(718), 1, + sym__atx_heading_content, + STATE(871), 1, + sym__qmd_attribute, + STATE(886), 1, + sym__atx_heading_line, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 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, anon_sym_BSLASH, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + sym__word, + [1137] = 7, ACTIONS(1744), 1, sym__code_span_start, ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1786), 1, + ACTIONS(1766), 1, aux_sym__commonmark_whitespace_token1, - 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, - ACTIONS(1798), 3, + ACTIONS(1824), 1, + anon_sym_BSLASH, + ACTIONS(1826), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1732), 4, + anon_sym_PIPE, + STATE(491), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1822), 34, 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, @@ -43843,36 +44122,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [509] = 12, - ACTIONS(1734), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1738), 1, - anon_sym_BSLASH, + sym__word, + [1198] = 7, ACTIONS(1744), 1, sym__code_span_start, ACTIONS(1746), 1, sym__latex_span_start, - STATE(482), 1, - aux_sym_pipe_table_row_repeat1, - STATE(592), 1, + ACTIONS(1766), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1830), 1, + anon_sym_BSLASH, + ACTIONS(1826), 4, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(492), 4, 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, - ACTIONS(1800), 3, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1828), 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, + [1259] = 7, + ACTIONS(1835), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1838), 1, + anon_sym_BSLASH, + ACTIONS(1843), 1, + sym__code_span_start, + ACTIONS(1846), 1, + sym__latex_span_start, + ACTIONS(1841), 4, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - ACTIONS(1732), 4, + anon_sym_PIPE, + STATE(491), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1832), 34, 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, @@ -43903,32 +44230,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [581] = 11, - ACTIONS(1802), 1, + sym__word, + [1320] = 7, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1766), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1824), 1, + anon_sym_BSLASH, + ACTIONS(1849), 4, sym__line_ending, - STATE(354), 1, - sym__newline, - STATE(622), 1, + sym__eof, + sym__pipe_table_line_ending, + anon_sym_PIPE, + STATE(491), 4, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(737), 1, - sym__atx_heading_content, - STATE(942), 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__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1822), 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, @@ -43953,38 +44279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [650] = 11, - ACTIONS(1802), 1, + [1381] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1820), 1, sym__line_ending, - STATE(348), 1, + STATE(346), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(746), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(745), 1, sym__atx_heading_content, - STATE(905), 1, - sym__qmd_attribute, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(1030), 3, + STATE(888), 1, + sym__qmd_attribute, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44019,30 +44343,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [719] = 7, - ACTIONS(1744), 1, - sym__code_span_start, - ACTIONS(1746), 1, - sym__latex_span_start, - ACTIONS(1786), 1, - aux_sym__commonmark_whitespace_token1, + [1450] = 11, ACTIONS(1814), 1, - anon_sym_BSLASH, - ACTIONS(1816), 4, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(491), 4, + STATE(353), 1, + sym__newline, + STATE(602), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1812), 34, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(721), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(956), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + 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, @@ -44067,36 +44393,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, - [780] = 7, - ACTIONS(1821), 1, + [1519] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1824), 1, - anon_sym_BSLASH, - ACTIONS(1829), 1, - sym__code_span_start, - ACTIONS(1832), 1, - sym__latex_span_start, - ACTIONS(1827), 4, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(490), 4, + STATE(354), 1, + sym__newline, + STATE(602), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(722), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(959), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, 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, @@ -44121,36 +44451,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, - [841] = 7, - ACTIONS(1744), 1, - sym__code_span_start, - ACTIONS(1746), 1, - sym__latex_span_start, - ACTIONS(1786), 1, + [1588] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1837), 1, - anon_sym_BSLASH, - ACTIONS(1839), 4, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(490), 4, + STATE(355), 1, + sym__newline, + STATE(602), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1835), 34, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(723), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(962), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + 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, @@ -44175,43 +44509,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, - [902] = 13, - ACTIONS(1734), 1, + [1657] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1847), 1, - anon_sym_PIPE, - ACTIONS(1849), 1, - sym__code_span_start, + ACTIONS(1816), 1, + anon_sym_LBRACE, ACTIONS(1851), 1, - sym__latex_span_start, - STATE(518), 1, - aux_sym_pipe_table_row_repeat1, - STATE(593), 1, + sym__line_ending, + STATE(356), 1, + sym__newline, + STATE(602), 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, - ACTIONS(1841), 4, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(724), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(964), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 34, 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, @@ -44236,35 +44567,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, - [975] = 7, - ACTIONS(1744), 1, - sym__code_span_start, - ACTIONS(1746), 1, - sym__latex_span_start, - ACTIONS(1786), 1, + sym__word, + [1726] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1794), 1, - anon_sym_BSLASH, - ACTIONS(1796), 4, + ACTIONS(1816), 1, + anon_sym_LBRACE, + ACTIONS(1851), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - anon_sym_PIPE, - STATE(508), 4, + STATE(357), 1, + sym__newline, + STATE(602), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1792), 34, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(725), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(966), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + 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, @@ -44289,43 +44625,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, - [1036] = 13, - ACTIONS(1734), 1, + [1795] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1847), 1, - anon_sym_PIPE, - ACTIONS(1849), 1, - sym__code_span_start, + ACTIONS(1816), 1, + anon_sym_LBRACE, ACTIONS(1851), 1, - sym__latex_span_start, - STATE(518), 1, - aux_sym_pipe_table_row_repeat1, - STATE(593), 1, + sym__line_ending, + STATE(358), 1, + sym__newline, + STATE(602), 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, - ACTIONS(1841), 4, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(726), 1, + sym__atx_heading_content, + STATE(886), 1, + sym__atx_heading_line, + STATE(972), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + ACTIONS(1818), 34, 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, @@ -44350,35 +44683,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, - [1109] = 11, - ACTIONS(1802), 1, + sym__word, + [1864] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(347), 1, + STATE(291), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(724), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(732), 1, sym__atx_heading_content, - STATE(902), 1, - sym__qmd_attribute, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(1030), 3, + STATE(895), 1, + sym__qmd_attribute, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44413,30 +44749,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1178] = 11, - ACTIONS(1802), 1, + [1933] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(355), 1, + STATE(292), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(738), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(733), 1, sym__atx_heading_content, - STATE(943), 1, - sym__qmd_attribute, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(1030), 3, + STATE(896), 1, + sym__qmd_attribute, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44471,30 +44807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1247] = 11, - ACTIONS(1802), 1, + [2002] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(356), 1, + STATE(293), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(739), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(734), 1, sym__atx_heading_content, - STATE(946), 1, - sym__qmd_attribute, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(1030), 3, + STATE(897), 1, + sym__qmd_attribute, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44529,30 +44865,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1316] = 11, - ACTIONS(1802), 1, + [2071] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(357), 1, + STATE(295), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(740), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(735), 1, sym__atx_heading_content, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(960), 1, + STATE(899), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44587,30 +44923,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1385] = 11, - ACTIONS(1802), 1, + [2140] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(358), 1, + STATE(296), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(741), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(736), 1, sym__atx_heading_content, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(962), 1, + STATE(901), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44645,30 +44981,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1454] = 11, - ACTIONS(1802), 1, + [2209] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1808), 1, + ACTIONS(1853), 1, sym__line_ending, - STATE(359), 1, + STATE(301), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(742), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(737), 1, sym__atx_heading_content, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(967), 1, + STATE(903), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44703,30 +45039,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1523] = 11, - ACTIONS(1802), 1, + [2278] = 11, + ACTIONS(1814), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, + ACTIONS(1816), 1, anon_sym_LBRACE, - ACTIONS(1853), 1, + ACTIONS(1820), 1, sym__line_ending, - STATE(210), 1, + STATE(470), 1, sym__newline, - STATE(622), 1, + STATE(602), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(728), 1, + STATE(641), 1, + aux_sym__caption_line_repeat1, + STATE(742), 1, sym__atx_heading_content, - STATE(906), 1, - sym__qmd_attribute, - STATE(950), 1, + STATE(886), 1, sym__atx_heading_line, - STATE(1030), 3, + STATE(957), 1, + sym__qmd_attribute, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - ACTIONS(1806), 34, + ACTIONS(1818), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_RBRACE, @@ -44761,32 +45097,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1592] = 11, - ACTIONS(1802), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1853), 1, + [2347] = 12, + ACTIONS(1768), 1, sym__line_ending, - STATE(211), 1, - sym__newline, - STATE(622), 1, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + STATE(508), 1, + aux_sym_pipe_table_row_repeat1, + STATE(560), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(729), 1, - sym__atx_heading_content, - STATE(908), 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, + STATE(824), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1804), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -44811,40 +45150,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, - [1661] = 11, - ACTIONS(1802), 1, + [2417] = 12, + ACTIONS(1779), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1853), 1, + ACTIONS(1785), 1, + anon_sym_BSLASH, + ACTIONS(1788), 1, sym__line_ending, - STATE(212), 1, - sym__newline, - STATE(622), 1, + ACTIONS(1790), 1, + sym__code_span_start, + ACTIONS(1793), 1, + sym__latex_span_start, + STATE(508), 1, + aux_sym_pipe_table_row_repeat1, + STATE(569), 1, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(730), 1, - sym__atx_heading_content, - STATE(909), 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, + STATE(839), 1, + sym_pipe_table_cell, + STATE(979), 1, + sym__pipe_table_cell_contents, + STATE(546), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1776), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1782), 30, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -44869,40 +45208,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [1730] = 11, - ACTIONS(1802), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1853), 1, + [2487] = 10, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(751), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1798), 3, sym__line_ending, - STATE(213), 1, - sym__newline, - STATE(622), 1, - sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(731), 1, - sym__atx_heading_content, - STATE(911), 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__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, anon_sym_SQUOTE, @@ -44927,40 +45264,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [1799] = 11, - ACTIONS(1802), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1853), 1, + [2553] = 10, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(755), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1768), 3, sym__line_ending, - STATE(214), 1, - sym__newline, - STATE(622), 1, - sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(722), 1, - sym__atx_heading_content, - STATE(912), 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__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, anon_sym_SQUOTE, @@ -44985,40 +45320,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, - [1868] = 11, - ACTIONS(1802), 1, + [2619] = 8, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1853), 1, + ACTIONS(1861), 1, + anon_sym_BSLASH, + STATE(544), 1, + sym__last_token_punctuation, + ACTIONS(1774), 2, sym__line_ending, - STATE(215), 1, - sym__newline, - STATE(622), 1, + anon_sym_PIPE, + STATE(543), 4, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(732), 1, - sym__atx_heading_content, - STATE(876), 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__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1859), 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, @@ -45043,40 +45373,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [1937] = 11, - ACTIONS(1802), 1, + [2681] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1867), 1, sym__line_ending, - STATE(331), 1, - sym__newline, - STATE(622), 1, + ACTIONS(1869), 1, + sym__block_close, + ACTIONS(1871), 1, + sym__fenced_code_block_end_backtick, + STATE(963), 1, + sym_code_fence_content, + STATE(597), 2, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(726), 1, - sym__atx_heading_content, - STATE(915), 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, + aux_sym__caption_line_repeat1, + STATE(536), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -45109,29 +45433,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2006] = 7, - ACTIONS(1744), 1, + [2743] = 12, + ACTIONS(1796), 1, + sym__line_ending, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1746), 1, + ACTIONS(1812), 1, sym__latex_span_start, - ACTIONS(1786), 1, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - 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, + STATE(508), 1, + aux_sym_pipe_table_row_repeat1, + STATE(549), 1, sym__whitespace, + STATE(804), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1835), 34, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45162,33 +45491,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [2067] = 11, - ACTIONS(1802), 1, + [2813] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1867), 1, sym__line_ending, - STATE(460), 1, - sym__newline, - STATE(622), 1, + ACTIONS(1873), 1, + sym__block_close, + ACTIONS(1875), 1, + sym__fenced_code_block_end_backtick, + STATE(926), 1, + sym_code_fence_content, + STATE(597), 2, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(744), 1, - sym__atx_heading_content, - STATE(950), 1, - sym__atx_heading_line, - STATE(951), 1, - sym__qmd_attribute, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - ACTIONS(1806), 34, + aux_sym__caption_line_repeat1, + STATE(536), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -45221,32 +45545,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2136] = 11, - ACTIONS(1802), 1, + [2875] = 8, + ACTIONS(1869), 1, + sym__block_close, + ACTIONS(1871), 1, + sym__fenced_code_block_end_tilde, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1881), 1, sym__line_ending, - STATE(318), 1, - sym__newline, - STATE(622), 1, + STATE(969), 1, + sym_code_fence_content, + STATE(588), 2, 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, + aux_sym__caption_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -45279,32 +45599,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2205] = 11, - ACTIONS(1802), 1, + [2937] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1804), 1, - anon_sym_LBRACE, - ACTIONS(1810), 1, + ACTIONS(1867), 1, sym__line_ending, - STATE(321), 1, - sym__newline, - STATE(622), 1, + ACTIONS(1883), 1, + sym__block_close, + ACTIONS(1885), 1, + sym__fenced_code_block_end_backtick, + STATE(878), 1, + sym_code_fence_content, + STATE(597), 2, sym__whitespace, - STATE(653), 1, - aux_sym__code_line_repeat1, - STATE(723), 1, - sym__atx_heading_content, - STATE(950), 1, - sym__atx_heading_line, - STATE(970), 1, - sym__qmd_attribute, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - ACTIONS(1806), 34, + aux_sym__caption_line_repeat1, + STATE(536), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, @@ -45337,36 +45653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2274] = 13, - ACTIONS(1734), 1, + [2999] = 8, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1847), 1, - anon_sym_PIPE, - 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, + ACTIONS(1881), 1, + sym__line_ending, + ACTIONS(1883), 1, + sym__block_close, + ACTIONS(1885), 1, + sym__fenced_code_block_end_tilde, + STATE(879), 1, + sym_code_fence_content, + STATE(588), 2, sym__whitespace, - STATE(805), 1, - sym_pipe_table_cell, - STATE(833), 1, - sym__pipe_table_cell_contents, - STATE(982), 1, - sym_pipe_table_row, - STATE(550), 2, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - ACTIONS(1841), 4, + aux_sym__caption_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1879), 35, 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, @@ -45392,39 +45699,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, - [2347] = 12, - ACTIONS(1788), 1, - sym__line_ending, - ACTIONS(1845), 1, + sym__word, + [3061] = 10, + ACTIONS(1738), 1, anon_sym_BSLASH, - ACTIONS(1849), 1, + ACTIONS(1744), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(1855), 1, - aux_sym__commonmark_whitespace_token1, - STATE(538), 1, - aux_sym_pipe_table_row_repeat1, - STATE(572), 1, - sym__whitespace, - STATE(815), 1, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(764), 1, sym_pipe_table_cell, - STATE(833), 1, + STATE(779), 1, sym__pipe_table_cell_contents, - STATE(550), 2, + STATE(487), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1841), 4, + ACTIONS(1887), 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(1843), 30, + ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45455,25 +45763,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [2417] = 8, - ACTIONS(1857), 1, + [3127] = 8, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(1863), 1, + ACTIONS(1889), 1, sym__block_close, - ACTIONS(1865), 1, - sym__fenced_code_block_end_backtick, - STATE(891), 1, + ACTIONS(1891), 1, + sym__fenced_code_block_end_tilde, + STATE(882), 1, sym_code_fence_content, - STATE(607), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45509,32 +45817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2479] = 10, - ACTIONS(1738), 1, - anon_sym_BSLASH, - ACTIONS(1744), 1, - sym__code_span_start, - ACTIONS(1746), 1, - sym__latex_span_start, + [3189] = 8, + ACTIONS(1863), 1, + aux_sym__commonmark_whitespace_token1, 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, - sym__eof, - sym__pipe_table_line_ending, - ACTIONS(1732), 4, + ACTIONS(1893), 1, + sym__block_close, + ACTIONS(1895), 1, + sym__fenced_code_block_end_backtick, + STATE(884), 1, + sym_code_fence_content, + STATE(597), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + STATE(536), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1865), 35, 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, @@ -45560,30 +45863,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, - [2545] = 8, - ACTIONS(1857), 1, + sym__word, + [3251] = 8, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(1869), 1, + ACTIONS(1893), 1, sym__block_close, - ACTIONS(1871), 1, - sym__fenced_code_block_end_backtick, - STATE(903), 1, + ACTIONS(1895), 1, + sym__fenced_code_block_end_tilde, + STATE(885), 1, sym_code_fence_content, - STATE(607), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45619,25 +45925,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2607] = 8, - ACTIONS(1869), 1, + [3313] = 8, + ACTIONS(1873), 1, sym__block_close, - ACTIONS(1871), 1, + ACTIONS(1875), 1, sym__fenced_code_block_end_tilde, - ACTIONS(1873), 1, - aux_sym__commonmark_whitespace_token1, ACTIONS(1877), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1881), 1, sym__line_ending, - STATE(913), 1, + STATE(955), 1, sym_code_fence_content, - STATE(595), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45673,34 +45979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2669] = 12, - ACTIONS(1790), 1, + [3375] = 12, + ACTIONS(1798), 1, sym__line_ending, - ACTIONS(1845), 1, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(1849), 1, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - STATE(538), 1, + STATE(508), 1, aux_sym_pipe_table_row_repeat1, - STATE(568), 1, + STATE(565), 1, sym__whitespace, - STATE(817), 1, + STATE(803), 1, sym_pipe_table_cell, - STATE(833), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(550), 2, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1841), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1843), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -45731,81 +46037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [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, - 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, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_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, - [2805] = 8, + [3445] = 8, ACTIONS(1863), 1, - sym__block_close, - ACTIONS(1865), 1, - sym__fenced_code_block_end_tilde, - ACTIONS(1873), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1867), 1, sym__line_ending, - STATE(896), 1, + ACTIONS(1897), 1, + sym__block_close, + ACTIONS(1899), 1, + sym__fenced_code_block_end_backtick, + STATE(914), 1, sym_code_fence_content, - STATE(595), 2, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(536), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45841,81 +46091,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [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, - 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, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_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, - [2933] = 8, - ACTIONS(1857), 1, + [3507] = 8, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, - sym__line_ending, ACTIONS(1881), 1, + sym__line_ending, + ACTIONS(1897), 1, sym__block_close, - ACTIONS(1883), 1, - sym__fenced_code_block_end_backtick, - STATE(907), 1, + ACTIONS(1899), 1, + sym__fenced_code_block_end_tilde, + STATE(916), 1, sym_code_fence_content, - STATE(607), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -45951,25 +46145,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [2995] = 8, - ACTIONS(1857), 1, + [3569] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(1885), 1, + ACTIONS(1901), 1, sym__block_close, - ACTIONS(1887), 1, + ACTIONS(1903), 1, sym__fenced_code_block_end_backtick, - STATE(884), 1, + STATE(918), 1, sym_code_fence_content, - STATE(607), 2, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(536), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46005,25 +46199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3057] = 8, - ACTIONS(1873), 1, - aux_sym__commonmark_whitespace_token1, + [3631] = 8, ACTIONS(1877), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(1885), 1, + ACTIONS(1901), 1, sym__block_close, - ACTIONS(1887), 1, + ACTIONS(1903), 1, sym__fenced_code_block_end_tilde, - STATE(886), 1, + STATE(920), 1, sym_code_fence_content, - STATE(595), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46059,25 +46253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3119] = 8, - ACTIONS(1857), 1, + [3693] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(1889), 1, + ACTIONS(1905), 1, sym__block_close, - ACTIONS(1891), 1, + ACTIONS(1907), 1, sym__fenced_code_block_end_backtick, - STATE(888), 1, + STATE(923), 1, sym_code_fence_content, - STATE(607), 2, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(536), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46113,29 +46307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3181] = 8, - ACTIONS(1849), 1, - sym__code_span_start, - ACTIONS(1851), 1, - sym__latex_span_start, - ACTIONS(1855), 1, + [3755] = 8, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1895), 1, - anon_sym_BSLASH, - STATE(546), 1, - sym__last_token_punctuation, - ACTIONS(1796), 2, + ACTIONS(1881), 1, sym__line_ending, - anon_sym_PIPE, - STATE(545), 4, + ACTIONS(1905), 1, + sym__block_close, + ACTIONS(1907), 1, + sym__fenced_code_block_end_tilde, + STATE(924), 1, + sym_code_fence_content, + STATE(588), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1893), 34, + aux_sym__caption_line_repeat1, + STATE(538), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1879), 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, @@ -46161,33 +46353,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3243] = 8, - ACTIONS(1857), 1, + [3817] = 12, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1800), 1, sym__line_ending, - ACTIONS(1897), 1, - sym__block_close, - ACTIONS(1899), 1, - sym__fenced_code_block_end_backtick, - STATE(893), 1, - sym_code_fence_content, - STATE(607), 2, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + STATE(507), 1, + aux_sym_pipe_table_row_repeat1, + STATE(582), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + STATE(803), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46213,33 +46414,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, - [3305] = 8, - ACTIONS(1873), 1, + [3887] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(1897), 1, + ACTIONS(1909), 1, sym__block_close, - ACTIONS(1899), 1, - sym__fenced_code_block_end_tilde, - STATE(894), 1, + ACTIONS(1911), 1, + sym__fenced_code_block_end_backtick, + STATE(906), 1, sym_code_fence_content, - STATE(595), 2, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(536), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46275,25 +46473,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3367] = 8, - ACTIONS(1873), 1, - aux_sym__commonmark_whitespace_token1, + [3949] = 8, ACTIONS(1877), 1, - sym__line_ending, + aux_sym__commonmark_whitespace_token1, ACTIONS(1881), 1, + sym__line_ending, + ACTIONS(1909), 1, sym__block_close, - ACTIONS(1883), 1, + ACTIONS(1911), 1, sym__fenced_code_block_end_tilde, - STATE(981), 1, + STATE(915), 1, sym_code_fence_content, - STATE(595), 2, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(538), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46329,34 +46527,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3429] = 12, - ACTIONS(1798), 1, - sym__line_ending, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1849), 1, - sym__code_span_start, - ACTIONS(1851), 1, - sym__latex_span_start, - ACTIONS(1855), 1, + [4011] = 8, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - STATE(538), 1, - aux_sym_pipe_table_row_repeat1, - STATE(566), 1, + ACTIONS(1867), 1, + sym__line_ending, + ACTIONS(1889), 1, + sym__block_close, + ACTIONS(1891), 1, + sym__fenced_code_block_end_backtick, + STATE(881), 1, + sym_code_fence_content, + STATE(597), 2, sym__whitespace, - 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, + aux_sym__caption_line_repeat1, + STATE(536), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1865), 35, 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, @@ -46382,32 +46573,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, - [3499] = 8, - ACTIONS(1857), 1, + sym__word, + [4073] = 11, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, - sym__line_ending, - ACTIONS(1901), 1, - sym__block_close, - ACTIONS(1903), 1, - sym__fenced_code_block_end_backtick, - STATE(926), 1, - sym_code_fence_content, - STATE(607), 2, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + STATE(479), 1, + aux_sym_pipe_table_row_repeat1, + STATE(584), 1, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + STATE(772), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 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, @@ -46433,35 +46632,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, - [3561] = 8, - ACTIONS(1873), 1, + [4140] = 7, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1915), 1, + anon_sym_BSLASH, + ACTIONS(1849), 2, sym__line_ending, - ACTIONS(1901), 1, - sym__block_close, - ACTIONS(1903), 1, - sym__fenced_code_block_end_tilde, - STATE(928), 1, - sym_code_fence_content, - STATE(595), 2, + anon_sym_PIPE, + STATE(539), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + 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, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46487,33 +46683,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3623] = 8, - ACTIONS(1857), 1, + [4199] = 6, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(1905), 1, + ACTIONS(1917), 2, sym__block_close, - ACTIONS(1907), 1, sym__fenced_code_block_end_backtick, - STATE(931), 1, - sym_code_fence_content, - STATE(607), 2, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(537), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1865), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46549,25 +46740,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3685] = 8, - ACTIONS(1873), 1, + [4256] = 6, + ACTIONS(1919), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1925), 1, sym__line_ending, - ACTIONS(1905), 1, + ACTIONS(1928), 2, sym__block_close, - ACTIONS(1907), 1, - sym__fenced_code_block_end_tilde, - STATE(987), 1, - sym_code_fence_content, - STATE(595), 2, + sym__fenced_code_block_end_backtick, + STATE(597), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, + aux_sym__caption_line_repeat1, + STATE(537), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + ACTIONS(1922), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46603,25 +46791,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3747] = 8, - ACTIONS(1857), 1, + [4313] = 6, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(1909), 1, + ACTIONS(1917), 2, sym__block_close, - ACTIONS(1911), 1, - sym__fenced_code_block_end_backtick, - STATE(935), 1, - sym_code_fence_content, - STATE(607), 2, + sym__fenced_code_block_end_tilde, + STATE(588), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(549), 3, + aux_sym__caption_line_repeat1, + STATE(545), 3, sym__newline, sym__code_line, aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + ACTIONS(1879), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -46657,27 +46842,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3809] = 8, - ACTIONS(1873), 1, + [4370] = 7, + ACTIONS(1933), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1936), 1, + anon_sym_BSLASH, + ACTIONS(1939), 1, + sym__code_span_start, + ACTIONS(1942), 1, + sym__latex_span_start, + ACTIONS(1841), 2, 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, + anon_sym_PIPE, + STATE(539), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1930), 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, @@ -46703,42 +46888,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [3871] = 12, + [4429] = 11, ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1800), 1, - sym__line_ending, - ACTIONS(1845), 1, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(1849), 1, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, - STATE(513), 1, + STATE(523), 1, aux_sym_pipe_table_row_repeat1, - STATE(584), 1, + STATE(573), 1, sym__whitespace, - STATE(816), 1, + STATE(804), 1, sym_pipe_table_cell, - STATE(833), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(550), 2, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1841), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1843), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46769,34 +46950,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [3941] = 12, - ACTIONS(1769), 1, + [4496] = 8, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1775), 1, + ACTIONS(1774), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, anon_sym_BSLASH, - ACTIONS(1778), 1, - sym__line_ending, - ACTIONS(1780), 1, + ACTIONS(1949), 1, sym__code_span_start, - ACTIONS(1783), 1, + ACTIONS(1951), 1, sym__latex_span_start, - STATE(538), 1, - aux_sym_pipe_table_row_repeat1, - STATE(589), 1, + STATE(564), 1, + sym__last_token_punctuation, + STATE(562), 4, sym__whitespace, - STATE(860), 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(1766), 4, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1945), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1772), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46827,27 +47002,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [4011] = 8, - ACTIONS(1873), 1, + sym__word, + [4557] = 7, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(1861), 1, + anon_sym_BSLASH, + ACTIONS(1774), 2, sym__line_ending, - 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, + anon_sym_PIPE, + STATE(543), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(551), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1859), 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, @@ -46873,40 +47049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [4073] = 11, - ACTIONS(1734), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1849), 1, + [4616] = 7, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, - STATE(530), 1, - aux_sym_pipe_table_row_repeat1, - STATE(574), 1, + ACTIONS(1855), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1915), 1, + anon_sym_BSLASH, + ACTIONS(1826), 2, + sym__line_ending, + anon_sym_PIPE, + STATE(539), 4, 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, - ACTIONS(1841), 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(1843), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -46937,24 +47106,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [4140] = 7, - ACTIONS(1849), 1, + sym__word, + [4675] = 7, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, ACTIONS(1855), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1915), 1, + ACTIONS(1955), 1, anon_sym_BSLASH, - ACTIONS(1839), 2, + ACTIONS(1826), 2, sym__line_ending, anon_sym_PIPE, - STATE(542), 4, + STATE(535), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1913), 34, + ACTIONS(1953), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -46989,27 +47159,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [4199] = 7, - ACTIONS(1920), 1, + [4734] = 6, + ACTIONS(1957), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1923), 1, - anon_sym_BSLASH, - ACTIONS(1926), 1, - sym__code_span_start, - ACTIONS(1929), 1, - sym__latex_span_start, - ACTIONS(1827), 2, + ACTIONS(1963), 1, sym__line_ending, - anon_sym_PIPE, - STATE(542), 4, + ACTIONS(1928), 2, + sym__block_close, + sym__fenced_code_block_end_tilde, + STATE(588), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1917), 34, + aux_sym__caption_line_repeat1, + STATE(545), 3, + sym__newline, + sym__code_line, + aux_sym_code_fence_content_repeat1, + ACTIONS(1960), 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, @@ -47035,30 +47202,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [4258] = 6, - ACTIONS(1932), 1, + [4791] = 7, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1938), 1, - sym__line_ending, - ACTIONS(1941), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(595), 2, + ACTIONS(1774), 1, + anon_sym_PIPE, + ACTIONS(1947), 1, + anon_sym_BSLASH, + ACTIONS(1949), 1, + sym__code_span_start, + ACTIONS(1951), 1, + sym__latex_span_start, + STATE(562), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(543), 3, - sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1935), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1945), 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, @@ -47084,36 +47255,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, - [4315] = 8, - ACTIONS(1734), 1, + [4849] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, - anon_sym_PIPE, - 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, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(1966), 1, + sym__eof, + STATE(269), 1, + sym__newline, + STATE(571), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1943), 34, + STATE(650), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, + sym__word, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47132,40 +47302,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [4376] = 7, - ACTIONS(1849), 1, - sym__code_span_start, - ACTIONS(1851), 1, - sym__latex_span_start, - ACTIONS(1855), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1915), 1, + [4913] = 3, + ACTIONS(1970), 1, anon_sym_BSLASH, - ACTIONS(1816), 2, + ACTIONS(1972), 1, + sym_block_continuation, + ACTIONS(1968), 41, 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(1913), 34, + sym__eof, + sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, sym__backslash_escape, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47195,78 +47359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [4435] = 7, - ACTIONS(1849), 1, + [4963] = 10, + ACTIONS(1798), 1, + sym__line_ending, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, - ACTIONS(1855), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1953), 1, - anon_sym_BSLASH, - ACTIONS(1816), 2, - sym__line_ending, + ACTIONS(1974), 1, anon_sym_PIPE, - STATE(541), 4, - sym__whitespace, + STATE(810), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1951), 34, + ACTIONS(1802), 4, 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, - [4494] = 6, - ACTIONS(1955), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1961), 1, - sym__line_ending, - ACTIONS(1941), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(607), 2, - sym__whitespace, - 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, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47292,40 +47411,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, - [4551] = 11, - ACTIONS(1734), 1, + [5027] = 7, + ACTIONS(1841), 1, + anon_sym_PIPE, + ACTIONS(1979), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1738), 1, + ACTIONS(1982), 1, anon_sym_BSLASH, - ACTIONS(1744), 1, + ACTIONS(1985), 1, sym__code_span_start, - ACTIONS(1746), 1, + ACTIONS(1988), 1, sym__latex_span_start, - STATE(485), 1, - aux_sym_pipe_table_row_repeat1, - STATE(583), 1, + STATE(550), 4, sym__whitespace, - 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, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1976), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, - sym__word, - ACTIONS(1736), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47356,22 +47466,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [4618] = 6, - ACTIONS(1857), 1, + sym__word, + [5085] = 6, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1861), 1, + ACTIONS(1995), 1, sym__line_ending, - ACTIONS(1964), 2, + ACTIONS(1997), 1, sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(607), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(547), 3, + aux_sym__caption_line_repeat1, + STATE(558), 3, sym__newline, sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1859), 35, + aux_sym__indented_chunk_repeat1, + ACTIONS(1993), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47407,24 +47517,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [4675] = 7, + [5141] = 7, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, ACTIONS(1849), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1951), 1, sym__latex_span_start, - ACTIONS(1855), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1895), 1, + ACTIONS(2001), 1, anon_sym_BSLASH, - ACTIONS(1796), 2, - sym__line_ending, - anon_sym_PIPE, - STATE(545), 4, + STATE(550), 4, sym__whitespace, sym__pipe_table_code_span, sym__pipe_table_latex_span, aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1893), 34, + ACTIONS(1999), 34, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, @@ -47459,24 +47568,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [4734] = 6, - ACTIONS(1873), 1, + [5199] = 10, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1877), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(2003), 1, sym__line_ending, - ACTIONS(1964), 2, - sym__block_close, - sym__fenced_code_block_end_tilde, - STATE(595), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(543), 3, + ACTIONS(2005), 1, + sym__eof, + STATE(175), 1, sym__newline, - sym__code_line, - aux_sym_code_fence_content_repeat1, - ACTIONS(1875), 35, + STATE(571), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, + sym__whitespace, + STATE(650), 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, @@ -47495,7 +47609,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, @@ -47509,27 +47622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [4791] = 7, - ACTIONS(1734), 1, + [5263] = 6, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1839), 1, - anon_sym_PIPE, - ACTIONS(1947), 1, - sym__code_span_start, - ACTIONS(1949), 1, - sym__latex_span_start, - ACTIONS(1968), 1, - anon_sym_BSLASH, - STATE(564), 4, + ACTIONS(1995), 1, + sym__line_ending, + ACTIONS(2007), 1, + sym__block_close, + STATE(608), 2, sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1966), 34, + aux_sym__caption_line_repeat1, + STATE(557), 3, + sym__newline, + sym__code_line, + aux_sym__indented_chunk_repeat1, + ACTIONS(1993), 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, @@ -47555,27 +47664,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, - [4849] = 6, - ACTIONS(1970), 1, + [5319] = 6, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1974), 1, + ACTIONS(1995), 1, sym__line_ending, - ACTIONS(1976), 1, + ACTIONS(2009), 1, sym__block_close, - STATE(618), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(557), 3, + aux_sym__caption_line_repeat1, + STATE(551), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + ACTIONS(1993), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47611,22 +47722,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [4905] = 10, + [5375] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1978), 1, + ACTIONS(2011), 1, sym__line_ending, - ACTIONS(1980), 1, + ACTIONS(2013), 1, sym__eof, - STATE(199), 1, + STATE(194), 1, sym__newline, - STATE(582), 1, + STATE(571), 1, aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(595), 1, sym__whitespace, - STATE(659), 2, + STATE(650), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -47665,72 +47776,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [4969] = 7, - ACTIONS(1734), 1, + [5439] = 6, + ACTIONS(1991), 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(1968), 1, - anon_sym_BSLASH, - STATE(564), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_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, - [5027] = 6, - ACTIONS(1970), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1974), 1, + ACTIONS(1995), 1, sym__line_ending, - ACTIONS(1982), 1, + ACTIONS(2015), 1, sym__block_close, - STATE(618), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(553), 3, + aux_sym__caption_line_repeat1, + STATE(558), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + ACTIONS(1993), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47766,21 +47826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [5083] = 6, - ACTIONS(1984), 1, + [5495] = 6, + ACTIONS(2017), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1990), 1, + ACTIONS(2023), 1, sym__line_ending, - ACTIONS(1993), 1, + ACTIONS(2026), 1, sym__block_close, - STATE(618), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(557), 3, + aux_sym__caption_line_repeat1, + STATE(558), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1987), 35, + ACTIONS(2020), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47816,21 +47876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [5139] = 6, - ACTIONS(1970), 1, + [5551] = 6, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1974), 1, - sym__line_ending, ACTIONS(1995), 1, + sym__line_ending, + ACTIONS(2028), 1, sym__block_close, - STATE(618), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(561), 3, + aux_sym__caption_line_repeat1, + STATE(563), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + ACTIONS(1993), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -47866,26 +47926,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [5195] = 7, - ACTIONS(1734), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(1796), 1, - anon_sym_PIPE, - ACTIONS(1945), 1, + [5607] = 10, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(1947), 1, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1949), 1, + ACTIONS(1812), 1, sym__latex_span_start, - STATE(555), 4, - sym__whitespace, + ACTIONS(1887), 1, + sym__line_ending, + ACTIONS(1974), 1, + anon_sym_PIPE, + STATE(795), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(1943), 34, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -47916,23 +47980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [5253] = 10, + [5671] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1997), 1, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(1999), 1, + ACTIONS(2030), 1, sym__eof, - STATE(193), 1, + STATE(441), 1, sym__newline, - STATE(582), 1, + STATE(571), 1, aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(595), 1, sym__whitespace, - STATE(659), 2, + STATE(650), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -47971,23 +48034,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [5317] = 6, - ACTIONS(1970), 1, + [5735] = 7, + ACTIONS(1734), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1974), 1, - sym__line_ending, + ACTIONS(1826), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + sym__code_span_start, + ACTIONS(1951), 1, + sym__latex_span_start, ACTIONS(2001), 1, - sym__block_close, - STATE(618), 2, + anon_sym_BSLASH, + STATE(550), 4, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(557), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(1999), 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, @@ -48013,29 +48079,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, - [5373] = 6, - ACTIONS(1970), 1, + [5793] = 6, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(1974), 1, + ACTIONS(1995), 1, sym__line_ending, - ACTIONS(2003), 1, + ACTIONS(2032), 1, sym__block_close, - STATE(618), 2, + STATE(608), 2, sym__whitespace, - aux_sym__code_line_repeat1, - STATE(567), 3, + aux_sym__caption_line_repeat1, + STATE(558), 3, sym__newline, sym__code_line, aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + ACTIONS(1993), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -48071,21 +48135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [5429] = 3, - ACTIONS(2007), 1, + [5849] = 7, + ACTIONS(1734), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(1826), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + sym__code_span_start, + ACTIONS(1951), 1, + sym__latex_span_start, + ACTIONS(2036), 1, anon_sym_BSLASH, - ACTIONS(2009), 1, - sym_block_continuation, - ACTIONS(2005), 41, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + STATE(552), 4, + sym__whitespace, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + aux_sym__pipe_table_cell_contents_repeat1, + ACTIONS(2034), 34, 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, @@ -48115,29 +48184,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [5479] = 7, - ACTIONS(1827), 1, - anon_sym_PIPE, - ACTIONS(2014), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2017), 1, + [5907] = 10, + ACTIONS(1768), 1, + sym__line_ending, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(2020), 1, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(2023), 1, + ACTIONS(1812), 1, sym__latex_span_start, - STATE(564), 4, - sym__whitespace, + ACTIONS(1974), 1, + anon_sym_PIPE, + STATE(823), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2011), 34, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, + sym__word, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48168,23 +48240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - sym__word, - [5537] = 10, + [5971] = 10, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(11), 1, sym__soft_line_ending, - ACTIONS(1810), 1, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2026), 1, + ACTIONS(2038), 1, sym__eof, - STATE(445), 1, + STATE(460), 1, sym__newline, - STATE(582), 1, + STATE(571), 1, aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(595), 1, sym__whitespace, - STATE(659), 2, + STATE(650), 2, sym__soft_line_break, sym__line, ACTIONS(9), 3, @@ -48223,30 +48294,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [5601] = 10, - ACTIONS(1788), 1, + [6035] = 10, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(11), 1, + sym__soft_line_ending, + ACTIONS(2040), 1, sym__line_ending, - ACTIONS(1845), 1, + ACTIONS(2042), 1, + sym__eof, + STATE(146), 1, + sym__newline, + STATE(571), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, + sym__whitespace, + STATE(650), 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, - ACTIONS(1849), 1, + anon_sym_RBRACK, + anon_sym_CARET, + anon_sym__, + anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_TILDE, + [6099] = 9, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1812), 1, sym__latex_span_start, - ACTIONS(2028), 1, + ACTIONS(2044), 1, anon_sym_PIPE, - STATE(809), 1, + STATE(807), 1, sym_pipe_table_cell, - STATE(833), 1, + STATE(838), 1, sym__pipe_table_cell_contents, - STATE(550), 2, + STATE(542), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1841), 4, + ACTIONS(1802), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1843), 30, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48277,23 +48400,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5665] = 6, - ACTIONS(1970), 1, - aux_sym__commonmark_whitespace_token1, + [6160] = 9, + ACTIONS(1949), 1, + sym__code_span_start, + ACTIONS(1951), 1, + sym__latex_span_start, ACTIONS(1974), 1, - sym__line_ending, - ACTIONS(2030), 1, - sym__block_close, - STATE(618), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - STATE(557), 3, - sym__newline, - sym__code_line, - aux_sym__indented_chunk_repeat1, - ACTIONS(1972), 35, + anon_sym_PIPE, + ACTIONS(2050), 1, + anon_sym_BSLASH, + STATE(847), 1, + sym_pipe_table_cell, + STATE(979), 1, + sym__pipe_table_cell_contents, + STATE(546), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(2046), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(2048), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48319,38 +48447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [5721] = 10, - ACTIONS(1798), 1, - sym__line_ending, - ACTIONS(1845), 1, - anon_sym_BSLASH, - ACTIONS(1849), 1, + [6221] = 9, + ACTIONS(1857), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, sym__code_span_start, - ACTIONS(1851), 1, + ACTIONS(1951), 1, sym__latex_span_start, - ACTIONS(2028), 1, - anon_sym_PIPE, - STATE(814), 1, + ACTIONS(2050), 1, + anon_sym_BSLASH, + STATE(870), 1, sym_pipe_table_cell, - STATE(833), 1, + STATE(979), 1, sym__pipe_table_cell_contents, - STATE(550), 2, + STATE(546), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, - ACTIONS(1841), 4, + ACTIONS(2046), 4, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__backslash_escape, sym__word, - ACTIONS(1843), 30, + ACTIONS(2048), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48381,29 +48504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [5785] = 10, - ACTIONS(5), 1, + [6282] = 8, + ACTIONS(2052), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, + ACTIONS(2063), 1, sym__soft_line_ending, - ACTIONS(1808), 1, - sym__line_ending, - ACTIONS(2032), 1, - sym__eof, - STATE(466), 1, - sym__newline, - STATE(582), 1, + STATE(571), 1, aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(595), 1, sym__whitespace, - STATE(659), 2, + ACTIONS(2061), 2, + sym__line_ending, + sym__eof, + STATE(650), 2, sym__soft_line_break, sym__line, - ACTIONS(9), 3, + ACTIONS(2058), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__word, - ACTIONS(7), 31, + ACTIONS(2055), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48435,29 +48555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [5849] = 10, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(2034), 1, + [6341] = 2, + ACTIONS(2068), 1, + anon_sym_BSLASH, + ACTIONS(2066), 41, sym__line_ending, - ACTIONS(2036), 1, sym__eof, - STATE(150), 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__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, @@ -48476,42 +48586,87 @@ 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, - [5913] = 10, + sym__word, + [6388] = 9, + ACTIONS(1806), 1, + anon_sym_BSLASH, + ACTIONS(1810), 1, + sym__code_span_start, + ACTIONS(1812), 1, + sym__latex_span_start, + ACTIONS(1974), 1, + anon_sym_PIPE, + STATE(810), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1802), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__backslash_escape, + sym__word, + ACTIONS(1804), 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, + [6449] = 5, ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - ACTIONS(1853), 1, + STATE(593), 1, + sym__last_token_punctuation, + STATE(592), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2072), 3, sym__line_ending, - ACTIONS(2038), 1, + sym__soft_line_ending, sym__eof, - STATE(270), 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, + ACTIONS(2070), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48530,6 +48685,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, @@ -48543,30 +48699,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [5977] = 10, - ACTIONS(1845), 1, + sym__word, + [6502] = 2, + ACTIONS(2076), 1, anon_sym_BSLASH, - ACTIONS(1849), 1, + ACTIONS(2074), 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, - ACTIONS(1851), 1, sym__latex_span_start, - ACTIONS(1879), 1, - sym__line_ending, - ACTIONS(2028), 1, + 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_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, + anon_sym_TILDE, + sym__word, + [6549] = 2, + ACTIONS(2078), 1, + anon_sym_BSLASH, + ACTIONS(1841), 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(1843), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48596,27 +48787,22 @@ static const uint16_t ts_small_parse_table[] = { 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_TILDE, + sym__word, + [6596] = 2, + ACTIONS(2082), 1, anon_sym_BSLASH, - STATE(552), 4, - sym__whitespace, - sym__pipe_table_code_span, - sym__pipe_table_latex_span, - aux_sym__pipe_table_cell_contents_repeat1, - ACTIONS(2040), 34, + ACTIONS(2080), 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, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48646,30 +48832,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, - [6099] = 9, - ACTIONS(1845), 1, + [6643] = 2, + ACTIONS(2086), 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(814), 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, + ACTIONS(2084), 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(1843), 30, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48699,25 +48877,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, - [6160] = 8, - ACTIONS(1810), 1, + sym__word, + [6690] = 2, + ACTIONS(2090), 1, + anon_sym_BSLASH, + ACTIONS(2088), 41, sym__line_ending, - ACTIONS(2044), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2048), 1, sym__eof, - STATE(337), 1, - sym__newline, - STATE(601), 1, - sym__whitespace, - STATE(620), 1, - aux_sym__code_line_repeat1, - STATE(837), 1, - sym__table_caption_line, - ACTIONS(2046), 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, @@ -48743,7 +48918,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__, @@ -48751,20 +48925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [6219] = 9, + [6737] = 9, ACTIONS(1738), 1, anon_sym_BSLASH, ACTIONS(1744), 1, sym__code_span_start, ACTIONS(1746), 1, sym__latex_span_start, - ACTIONS(2050), 1, + ACTIONS(2092), 1, anon_sym_PIPE, - STATE(752), 1, + STATE(766), 1, sym_pipe_table_cell, - STATE(782), 1, + STATE(779), 1, sym__pipe_table_cell_contents, - STATE(493), 2, + STATE(487), 2, sym__pipe_table_code_span, sym__pipe_table_latex_span, ACTIONS(1732), 4, @@ -48803,62 +48977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_BQUOTE, anon_sym_TILDE, - [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(2054), 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, - [6341] = 2, - ACTIONS(2060), 1, + [6798] = 2, + ACTIONS(2096), 1, anon_sym_BSLASH, - ACTIONS(2058), 41, + ACTIONS(2094), 41, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -48900,19 +49022,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [6388] = 2, - ACTIONS(2064), 1, + [6845] = 9, + ACTIONS(1806), 1, anon_sym_BSLASH, - ACTIONS(2062), 41, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + ACTIONS(1810), 1, sym__code_span_start, + ACTIONS(1812), 1, sym__latex_span_start, + ACTIONS(1974), 1, + anon_sym_PIPE, + STATE(823), 1, + sym_pipe_table_cell, + STATE(838), 1, + sym__pipe_table_cell_contents, + STATE(542), 2, + sym__pipe_table_code_span, + sym__pipe_table_latex_span, + ACTIONS(1802), 4, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, sym__backslash_escape, - aux_sym__commonmark_whitespace_token1, + sym__word, + ACTIONS(1804), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -48942,22 +49073,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, - [6435] = 2, - ACTIONS(2068), 1, + [6906] = 9, + ACTIONS(1738), 1, anon_sym_BSLASH, - 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, + ACTIONS(1744), 1, sym__code_span_start, + ACTIONS(1746), 1, sym__latex_span_start, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(755), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 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, @@ -48987,27 +49125,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, - [6482] = 8, - ACTIONS(1808), 1, - sym__line_ending, - ACTIONS(2044), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2070), 1, - sym__eof, - 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, + [6967] = 9, + ACTIONS(1738), 1, + anon_sym_BSLASH, + ACTIONS(1744), 1, + sym__code_span_start, + ACTIONS(1746), 1, + sym__latex_span_start, + ACTIONS(1857), 1, + anon_sym_PIPE, + STATE(751), 1, + sym_pipe_table_cell, + STATE(779), 1, + sym__pipe_table_cell_contents, + STATE(487), 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, @@ -49033,34 +49173,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [6541] = 8, - ACTIONS(2072), 1, + [7028] = 4, + ACTIONS(2098), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2083), 1, - sym__soft_line_ending, - STATE(582), 1, - aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(585), 2, sym__whitespace, - ACTIONS(2081), 2, + aux_sym__caption_line_repeat1, + ACTIONS(2104), 3, sym__line_ending, - sym__eof, - STATE(659), 2, - sym__soft_line_break, - sym__line, - ACTIONS(2078), 3, + sym__block_close, + sym__fenced_code_block_end_backtick, + ACTIONS(2101), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(2075), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49079,6 +49209,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, @@ -49092,28 +49223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [6600] = 9, - 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(1732), 4, + sym__word, + [7078] = 4, + ACTIONS(2106), 1, + aux_sym__commonmark_whitespace_token1, + STATE(586), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2104), 3, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2109), 35, 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, @@ -49139,33 +49262,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_TILDE, - [6661] = 9, - 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, + anon_sym_TILDE, + sym__word, + [7128] = 8, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(383), 1, + sym_paragraph, + STATE(566), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, + sym__whitespace, + STATE(650), 2, + sym__soft_line_break, + sym__line, + ACTIONS(9), 3, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, sym__word, - ACTIONS(1843), 30, + ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49184,31 +49307,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, - [6722] = 5, - ACTIONS(5), 1, + [7186] = 4, + ACTIONS(1877), 1, aux_sym__commonmark_whitespace_token1, - STATE(610), 1, - sym__last_token_punctuation, - STATE(606), 2, + STATE(586), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2088), 3, + aux_sym__caption_line_repeat1, + ACTIONS(2114), 3, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2086), 35, + sym__block_close, + sym__fenced_code_block_end_tilde, + ACTIONS(2112), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -49244,10 +49366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [6775] = 2, - ACTIONS(2090), 1, + [7236] = 2, + ACTIONS(2116), 1, anon_sym_BSLASH, - ACTIONS(1827), 41, + ACTIONS(1800), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -49286,27 +49408,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [6822] = 8, - ACTIONS(1853), 1, - sym__line_ending, - ACTIONS(2044), 1, + [7282] = 8, + ACTIONS(5), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2092), 1, - sym__eof, - STATE(257), 1, - sym__newline, - STATE(612), 1, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(315), 1, + sym_paragraph, + STATE(547), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, sym__whitespace, - STATE(620), 1, - aux_sym__code_line_repeat1, - STATE(852), 1, - sym__table_caption_line, - ACTIONS(2046), 35, + STATE(650), 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, @@ -49325,7 +49447,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, @@ -49339,20 +49460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [6881] = 2, - ACTIONS(2096), 1, - anon_sym_BSLASH, - ACTIONS(2094), 41, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + [7340] = 8, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(11), 1, + sym__soft_line_ending, + STATE(452), 1, + sym_paragraph, + STATE(561), 1, + aux_sym_paragraph_repeat1, + STATE(595), 1, + sym__whitespace, + STATE(650), 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, @@ -49371,42 +49497,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_DOT, anon_sym_SLASH, - anon_sym_COLON, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [6928] = 9, - ACTIONS(1947), 1, - sym__code_span_start, - ACTIONS(1949), 1, - sym__latex_span_start, - ACTIONS(2028), 1, - anon_sym_PIPE, - ACTIONS(2056), 1, - anon_sym_BSLASH, - STATE(838), 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, + [7398] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(601), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2120), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2118), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__backslash_escape, - sym__word, - ACTIONS(2054), 30, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49432,24 +49548,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, - [6989] = 2, - ACTIONS(2100), 1, - anon_sym_BSLASH, - ACTIONS(2098), 41, + sym__word, + [7448] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(596), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2120), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2122), 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, @@ -49475,6 +49594,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__, @@ -49482,10 +49602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7036] = 2, - ACTIONS(2104), 1, + [7498] = 2, + ACTIONS(2124), 1, anon_sym_BSLASH, - ACTIONS(2102), 41, + ACTIONS(1788), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -49524,31 +49644,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, - [7083] = 9, - 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(1732), 4, + [7544] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(592), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2072), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2070), 35, 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, @@ -49574,76 +49684,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_TILDE, - [7144] = 9, - ACTIONS(1845), 1, anon_sym_BSLASH, - ACTIONS(1849), 1, - sym__code_span_start, - ACTIONS(1851), 1, - sym__latex_span_start, - ACTIONS(2106), 1, - anon_sym_PIPE, - STATE(820), 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_PIPE, anon_sym_TILDE, - [7205] = 2, - ACTIONS(2108), 1, - anon_sym_BSLASH, - ACTIONS(1778), 40, + sym__word, + [7594] = 4, + ACTIONS(5), 1, + aux_sym__commonmark_whitespace_token1, + STATE(601), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2126), 3, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2118), 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, @@ -49669,23 +49730,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, - [7251] = 4, - ACTIONS(1873), 1, + [7644] = 4, + ACTIONS(1863), 1, aux_sym__commonmark_whitespace_token1, - STATE(597), 2, + STATE(585), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2112), 3, + aux_sym__caption_line_repeat1, + ACTIONS(2114), 3, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_tilde, - ACTIONS(2110), 35, + sym__fenced_code_block_end_backtick, + ACTIONS(2128), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -49721,10 +49784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7301] = 2, - ACTIONS(2116), 1, + [7694] = 2, + ACTIONS(2132), 1, anon_sym_BSLASH, - ACTIONS(2114), 40, + ACTIONS(2130), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -49765,56 +49828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [7347] = 4, - ACTIONS(2118), 1, - aux_sym__commonmark_whitespace_token1, - STATE(597), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2124), 3, - sym__line_ending, - 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, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7397] = 2, - ACTIONS(2128), 1, + [7740] = 2, + ACTIONS(2136), 1, anon_sym_BSLASH, - ACTIONS(2126), 40, + ACTIONS(2134), 40, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -49855,25 +49872,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [7443] = 8, - ACTIONS(5), 1, + [7786] = 5, + ACTIONS(2138), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(456), 1, - sym_paragraph, - STATE(565), 1, - aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(605), 1, + sym__last_token_punctuation, + ACTIONS(2142), 2, + sym__line_ending, + sym__eof, + STATE(612), 2, sym__whitespace, - STATE(659), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__caption_line_repeat1, + ACTIONS(2140), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49892,6 +49904,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, @@ -49905,25 +49918,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [7501] = 8, - ACTIONS(5), 1, + sym__word, + [7838] = 4, + ACTIONS(2144), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(311), 1, - sym_paragraph, - STATE(571), 1, - aux_sym_paragraph_repeat1, - STATE(603), 1, + STATE(601), 2, sym__whitespace, - STATE(659), 2, - sym__soft_line_break, - sym__line, - ACTIONS(9), 3, + aux_sym__caption_line_repeat1, + ACTIONS(2104), 3, + sym__line_ending, + sym__soft_line_ending, + sym__eof, + ACTIONS(2147), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__word, - ACTIONS(7), 31, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -49942,6 +49950,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, @@ -49955,18 +49964,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - [7559] = 5, - ACTIONS(2044), 1, - aux_sym__commonmark_whitespace_token1, - STATE(848), 1, - sym__table_caption_line, - ACTIONS(1752), 2, + sym__word, + [7888] = 5, + ACTIONS(1752), 1, sym__line_ending, - sym__eof, - STATE(620), 2, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + STATE(887), 1, + sym__atx_heading_line, + STATE(641), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2046), 35, + aux_sym__caption_line_repeat1, + ACTIONS(1818), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50002,63 +50011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7611] = 4, - ACTIONS(5), 1, + [7939] = 4, + ACTIONS(2150), 1, aux_sym__commonmark_whitespace_token1, - STATE(605), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2132), 3, + ACTIONS(2104), 2, 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, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [7661] = 4, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - STATE(606), 2, + STATE(603), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2088), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2086), 35, + aux_sym__caption_line_repeat1, + ACTIONS(2153), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50094,69 +50056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7711] = 8, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(11), 1, - sym__soft_line_ending, - STATE(385), 1, - sym_paragraph, - STATE(569), 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__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, + [7988] = 2, + ACTIONS(2068), 1, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - [7769] = 4, - ACTIONS(2134), 1, - aux_sym__commonmark_whitespace_token1, - STATE(605), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2124), 3, + ACTIONS(2066), 39, sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2137), 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, @@ -50182,7 +50092,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__, @@ -50190,17 +50099,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7819] = 4, - ACTIONS(5), 1, + [8033] = 4, + ACTIONS(2138), 1, aux_sym__commonmark_whitespace_token1, - STATE(605), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2140), 3, + ACTIONS(2158), 2, sym__line_ending, - sym__soft_line_ending, sym__eof, - ACTIONS(2130), 35, + STATE(613), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2156), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50236,19 +50144,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7869] = 4, - ACTIONS(1857), 1, - aux_sym__commonmark_whitespace_token1, - STATE(609), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2112), 3, + [8082] = 2, + ACTIONS(2160), 1, + sym_block_continuation, + ACTIONS(1382), 39, sym__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, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50282,13 +50187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7919] = 2, - ACTIONS(2144), 1, + [8127] = 2, + ACTIONS(2078), 1, anon_sym_BSLASH, - ACTIONS(1800), 40, + ACTIONS(1841), 39, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -50324,65 +50227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [7965] = 4, - ACTIONS(2146), 1, + [8172] = 4, + ACTIONS(1991), 1, aux_sym__commonmark_whitespace_token1, - STATE(609), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2124), 3, + ACTIONS(2114), 2, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, - ACTIONS(2149), 35, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8015] = 4, - ACTIONS(5), 1, - aux_sym__commonmark_whitespace_token1, - STATE(602), 2, + STATE(609), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2140), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - ACTIONS(2152), 35, + aux_sym__caption_line_repeat1, + ACTIONS(2162), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50418,18 +50275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8065] = 5, - ACTIONS(2044), 1, + [8221] = 4, + ACTIONS(2164), 1, aux_sym__commonmark_whitespace_token1, - STATE(832), 1, - sym__table_caption_line, - ACTIONS(1752), 2, + ACTIONS(2104), 2, sym__line_ending, - sym__eof, - STATE(620), 2, + sym__block_close, + STATE(609), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2046), 35, + aux_sym__caption_line_repeat1, + ACTIONS(2167), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50465,20 +50320,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8117] = 5, - ACTIONS(2044), 1, - aux_sym__commonmark_whitespace_token1, - STATE(853), 1, - sym__table_caption_line, - ACTIONS(1752), 2, + [8270] = 2, + ACTIONS(2082), 1, + anon_sym_BSLASH, + ACTIONS(2080), 39, sym__line_ending, - sym__eof, - STATE(620), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - 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, @@ -50504,7 +50356,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__, @@ -50512,10 +50363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8169] = 2, - ACTIONS(2060), 1, + [8315] = 2, + ACTIONS(2086), 1, anon_sym_BSLASH, - ACTIONS(2058), 39, + ACTIONS(2084), 39, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -50555,16 +50406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8214] = 4, - ACTIONS(2154), 1, + [8360] = 4, + ACTIONS(2138), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2124), 2, + ACTIONS(2158), 2, sym__line_ending, sym__eof, - STATE(614), 2, + STATE(603), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2157), 35, + aux_sym__caption_line_repeat1, + ACTIONS(2170), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50600,17 +50451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8263] = 2, - ACTIONS(2064), 1, - anon_sym_BSLASH, - ACTIONS(2062), 39, + [8409] = 4, + ACTIONS(2138), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2172), 2, sym__line_ending, + sym__eof, + STATE(603), 2, + sym__whitespace, + aux_sym__caption_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, @@ -50636,6 +50488,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__, @@ -50643,10 +50496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8308] = 2, - ACTIONS(2096), 1, + [8458] = 2, + ACTIONS(2076), 1, anon_sym_BSLASH, - ACTIONS(2094), 39, + ACTIONS(2074), 39, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -50686,13 +50539,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8353] = 2, - ACTIONS(2160), 1, + [8503] = 2, + ACTIONS(2174), 1, sym_block_continuation, - ACTIONS(1350), 39, + ACTIONS(1382), 39, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -50729,63 +50582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_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, + [8548] = 2, + ACTIONS(2090), 1, anon_sym_BSLASH, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [8447] = 4, - ACTIONS(2164), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2124), 2, + ACTIONS(2088), 39, sym__line_ending, - sym__block_close, - 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, + 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, @@ -50811,7 +50618,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__, @@ -50819,16 +50625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8496] = 4, - ACTIONS(2044), 1, + [8593] = 4, + ACTIONS(2138), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2172), 2, + ACTIONS(2142), 2, sym__line_ending, sym__eof, - STATE(614), 2, + STATE(612), 2, sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2170), 35, + aux_sym__caption_line_repeat1, + ACTIONS(2140), 35, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, anon_sym_LBRACE, @@ -50864,10 +50670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8545] = 2, - ACTIONS(2104), 1, + [8642] = 2, + ACTIONS(2132), 1, anon_sym_BSLASH, - ACTIONS(2102), 39, + ACTIONS(2130), 38, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -50904,22 +50710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8590] = 5, - ACTIONS(1752), 1, + [8686] = 1, + ACTIONS(2066), 39, sym__line_ending, - ACTIONS(1802), 1, - aux_sym__commonmark_whitespace_token1, - STATE(930), 1, - sym__atx_heading_line, - STATE(653), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(1806), 35, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -50953,11 +50753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8641] = 2, - ACTIONS(2090), 1, + [8728] = 2, + ACTIONS(2086), 1, anon_sym_BSLASH, - ACTIONS(1827), 39, - sym__line_ending, + ACTIONS(2084), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -50996,11 +50795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8686] = 2, - ACTIONS(2100), 1, + [8772] = 2, + ACTIONS(2082), 1, anon_sym_BSLASH, - ACTIONS(2098), 39, - sym__line_ending, + ACTIONS(2080), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -51039,15 +50837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8731] = 2, - ACTIONS(2174), 1, - sym_block_continuation, - ACTIONS(1350), 39, + [8816] = 2, + ACTIONS(2124), 1, + anon_sym_BSLASH, + ACTIONS(1788), 38, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + sym__code_span_start, + sym__latex_span_start, + sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -51074,22 +50873,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, sym__word, - [8776] = 5, + [8860] = 5, ACTIONS(2178), 1, anon_sym_SQUOTE, ACTIONS(2180), 1, anon_sym_BSLASH, ACTIONS(2182), 1, sym__soft_line_ending, - STATE(643), 3, + STATE(645), 3, sym__commonmark_whitespace, sym__soft_line_break, aux_sym_key_value_value_repeat1, @@ -51127,23 +50924,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8826] = 2, - ACTIONS(2128), 1, + [8910] = 5, + ACTIONS(2178), 1, + anon_sym_DQUOTE, + ACTIONS(2186), 1, anon_sym_BSLASH, - ACTIONS(2126), 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(2188), 1, + sym__soft_line_ending, + STATE(633), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2184), 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, @@ -51167,27 +50965,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [8870] = 5, - ACTIONS(2187), 1, - anon_sym_SQUOTE, - ACTIONS(2189), 1, - anon_sym_BSLASH, - ACTIONS(2192), 1, + [8960] = 5, + ACTIONS(2188), 1, sym__soft_line_ending, - STATE(628), 3, + ACTIONS(2192), 1, + anon_sym_DQUOTE, + ACTIONS(2194), 1, + anon_sym_BSLASH, + STATE(624), 3, sym__commonmark_whitespace, sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2184), 33, + aux_sym_key_value_value_repeat2, + ACTIONS(2190), 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, @@ -51213,14 +51012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [8920] = 1, - ACTIONS(2094), 39, + [9010] = 2, + ACTIONS(2116), 1, + anon_sym_BSLASH, + ACTIONS(1800), 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, @@ -51247,32 +51050,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, - anon_sym_PIPE, anon_sym_TILDE, sym__word, - [8962] = 5, - ACTIONS(2198), 1, - anon_sym_DQUOTE, - ACTIONS(2200), 1, + [9054] = 2, + ACTIONS(2078), 1, anon_sym_BSLASH, - ACTIONS(2203), 1, - sym__soft_line_ending, - STATE(630), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2195), 33, + ACTIONS(1841), 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, @@ -51298,14 +51097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [9012] = 2, - ACTIONS(2206), 1, - sym_block_continuation, - ACTIONS(1350), 38, + [9098] = 1, + ACTIONS(1426), 39, sym__line_ending, sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -51342,24 +51139,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9056] = 5, - ACTIONS(2178), 1, - anon_sym_DQUOTE, - ACTIONS(2210), 1, + [9140] = 2, + ACTIONS(2076), 1, anon_sym_BSLASH, - ACTIONS(2212), 1, - sym__soft_line_ending, - STATE(652), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2208), 33, + ACTIONS(2074), 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, @@ -51385,17 +51180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [9106] = 2, - ACTIONS(2060), 1, - anon_sym_BSLASH, - ACTIONS(2058), 38, + [9184] = 1, + ACTIONS(2104), 39, + sym__line_ending, + sym__block_close, + sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -51422,6 +51214,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__, @@ -51429,10 +51222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9150] = 2, - ACTIONS(2064), 1, + [9226] = 2, + ACTIONS(2068), 1, anon_sym_BSLASH, - ACTIONS(2062), 38, + ACTIONS(2066), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -51471,11 +51264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9194] = 1, - ACTIONS(1424), 39, + [9270] = 1, + ACTIONS(1426), 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, @@ -51512,20 +51305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9236] = 1, - ACTIONS(2124), 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, + [9312] = 5, + ACTIONS(2199), 1, + anon_sym_DQUOTE, + ACTIONS(2201), 1, + anon_sym_BSLASH, + ACTIONS(2204), 1, + sym__soft_line_ending, + STATE(633), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat2, + ACTIONS(2196), 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, @@ -51545,28 +51342,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, + anon_sym_BSLASH_DQUOTE, sym__word, - [9278] = 2, - ACTIONS(2096), 1, + [9362] = 5, + ACTIONS(2182), 1, + sym__soft_line_ending, + ACTIONS(2192), 1, + anon_sym_SQUOTE, + ACTIONS(2209), 1, anon_sym_BSLASH, - ACTIONS(2094), 38, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, - sym__code_span_start, - sym__latex_span_start, - sym__backslash_escape, + STATE(623), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2207), 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, @@ -51595,8 +51395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9322] = 1, - ACTIONS(2124), 39, + [9412] = 1, + ACTIONS(2104), 39, sym__line_ending, sym__block_close, sym__fenced_code_block_end_tilde, @@ -51636,11 +51436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9364] = 1, - ACTIONS(2094), 39, + [9454] = 2, + ACTIONS(2211), 1, + sym_block_continuation, + ACTIONS(1382), 38, sym__line_ending, sym__block_close, - sym__fenced_code_block_end_backtick, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -51677,11 +51478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9406] = 1, - ACTIONS(2094), 39, + [9498] = 1, + ACTIONS(2104), 39, sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_tilde, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -51718,10 +51519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9448] = 2, - ACTIONS(2216), 1, + [9540] = 2, + ACTIONS(2215), 1, sym_block_continuation, - ACTIONS(2214), 38, + ACTIONS(2213), 38, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -51760,10 +51561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9492] = 2, - ACTIONS(2108), 1, + [9584] = 2, + ACTIONS(2136), 1, anon_sym_BSLASH, - ACTIONS(1778), 38, + ACTIONS(2134), 38, sym__line_ending, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, @@ -51802,55 +51603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_TILDE, sym__word, - [9536] = 5, - ACTIONS(2182), 1, - sym__soft_line_ending, - ACTIONS(2220), 1, - anon_sym_SQUOTE, - ACTIONS(2222), 1, - anon_sym_BSLASH, - STATE(628), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat1, - ACTIONS(2218), 33, - aux_sym__commonmark_whitespace_token1, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_BSLASH_SQUOTE, - anon_sym_BANG, - anon_sym_DQUOTE, - anon_sym_POUND, - anon_sym_DOLLAR, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_CARET, - anon_sym__, - anon_sym_BQUOTE, - anon_sym_PIPE, - anon_sym_TILDE, - sym__word, - [9586] = 2, + [9628] = 2, ACTIONS(2090), 1, anon_sym_BSLASH, - ACTIONS(1827), 38, + ACTIONS(2088), 38, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, sym__code_span_start, @@ -51889,17 +51645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9630] = 2, - ACTIONS(2144), 1, - anon_sym_BSLASH, - ACTIONS(1800), 38, + [9672] = 4, + ACTIONS(1814), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2219), 1, sym__line_ending, + STATE(644), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2217), 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, @@ -51925,23 +51681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, + anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9674] = 4, - ACTIONS(2124), 1, + [9720] = 1, + ACTIONS(2066), 39, sym__line_ending, - ACTIONS(2224), 1, - aux_sym__commonmark_whitespace_token1, - STATE(646), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2227), 35, + sym__block_close, + sym__fenced_code_block_end_tilde, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -51975,11 +51730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9722] = 1, - ACTIONS(1424), 39, + [9762] = 1, + ACTIONS(2066), 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, @@ -52016,14 +51771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9764] = 1, - ACTIONS(2124), 39, + [9804] = 4, + ACTIONS(2104), 1, sym__line_ending, - sym__soft_line_ending, - sym__eof, + ACTIONS(2221), 1, + aux_sym__commonmark_whitespace_token1, + STATE(644), 2, + sym__whitespace, + aux_sym__caption_line_repeat1, + ACTIONS(2224), 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, @@ -52057,20 +51815,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9806] = 2, - ACTIONS(2100), 1, + [9852] = 5, + ACTIONS(2230), 1, + anon_sym_SQUOTE, + ACTIONS(2232), 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, + ACTIONS(2235), 1, + sym__soft_line_ending, + STATE(645), 3, + sym__commonmark_whitespace, + sym__soft_line_break, + aux_sym_key_value_value_repeat1, + ACTIONS(2227), 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, @@ -52099,16 +51860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9850] = 2, - ACTIONS(2116), 1, - anon_sym_BSLASH, - ACTIONS(2114), 38, + [9902] = 1, + ACTIONS(2104), 38, sym__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, @@ -52135,21 +51892,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, sym__word, - [9894] = 2, - ACTIONS(2104), 1, - anon_sym_BSLASH, - ACTIONS(2102), 38, + [9943] = 1, + ACTIONS(2066), 38, + sym__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, @@ -52176,6 +51932,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__, @@ -52183,24 +51940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [9938] = 5, - ACTIONS(2212), 1, - sym__soft_line_ending, - ACTIONS(2220), 1, - anon_sym_DQUOTE, - ACTIONS(2232), 1, - anon_sym_BSLASH, - STATE(630), 3, - sym__commonmark_whitespace, - sym__soft_line_break, - aux_sym_key_value_value_repeat2, - ACTIONS(2230), 33, + [9984] = 1, + ACTIONS(2104), 38, + sym__line_ending, + sym__block_close, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_DQUOTE, anon_sym_POUND, anon_sym_DOLLAR, anon_sym_PERCENT, @@ -52220,25 +51972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, + anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - anon_sym_BSLASH_DQUOTE, sym__word, - [9988] = 4, - ACTIONS(1802), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2236), 1, + [10025] = 1, + ACTIONS(2238), 38, sym__line_ending, - STATE(646), 2, - sym__whitespace, - aux_sym__code_line_repeat1, - ACTIONS(2234), 35, + sym__soft_line_ending, + sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, + aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52257,7 +52006,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, @@ -52272,10 +52020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10036] = 1, - ACTIONS(2124), 38, + [10066] = 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, @@ -52297,7 +52046,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, @@ -52312,11 +52060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10077] = 1, - ACTIONS(2238), 38, + [10107] = 1, + ACTIONS(2066), 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, @@ -52338,6 +52085,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, @@ -52352,10 +52100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10118] = 1, - ACTIONS(2094), 38, + [10148] = 1, + ACTIONS(1426), 38, sym__line_ending, - sym__eof, + sym__block_close, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -52392,10 +52140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10159] = 1, - ACTIONS(2124), 38, + [10189] = 1, + ACTIONS(2066), 37, sym__line_ending, - sym__eof, sym__display_math_state_track_marker, sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, @@ -52432,13 +52179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10200] = 1, - ACTIONS(1424), 38, - sym__line_ending, - sym__block_close, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10229] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2246), 1, + sym__latex_span_close, + STATE(662), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2244), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52472,14 +52221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10241] = 1, - ACTIONS(2240), 38, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10275] = 4, + ACTIONS(2248), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2254), 1, + sym__latex_span_close, + STATE(655), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2251), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52498,6 +52248,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, @@ -52512,13 +52263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10282] = 1, - ACTIONS(2094), 38, - sym__line_ending, - sym__block_close, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10321] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2260), 1, + sym__code_span_close, + STATE(661), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2258), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52552,15 +52305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10323] = 4, + [10367] = 4, ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2248), 1, - sym__code_span_close, - STATE(661), 2, + ACTIONS(2264), 1, + sym__latex_span_close, + STATE(660), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2245), 33, + ACTIONS(2262), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52594,15 +52347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10369] = 4, - ACTIONS(2250), 1, + [10413] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2254), 1, - sym__latex_span_close, - STATE(673), 2, + ACTIONS(2268), 1, + sym__code_span_close, + STATE(668), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2252), 33, + ACTIONS(2266), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52636,15 +52389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10415] = 4, + [10459] = 4, ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2260), 1, + ACTIONS(2270), 1, sym__code_span_close, - STATE(661), 2, + STATE(668), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2258), 33, + ACTIONS(2266), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52678,14 +52431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10461] = 3, - ACTIONS(2262), 1, - anon_sym_BSLASH, - ACTIONS(2264), 1, - sym_block_continuation, - ACTIONS(2214), 35, - sym__soft_line_ending, + [10505] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2274), 1, + sym__latex_span_close, + STATE(655), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2272), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52711,20 +52465,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, - [10505] = 1, - ACTIONS(2094), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10551] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2276), 1, + sym__code_span_close, + STATE(668), 2, + sym__whitespace, + aux_sym__pipe_table_code_span_repeat1, + ACTIONS(2266), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52758,15 +52515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10545] = 4, - ACTIONS(2250), 1, + [10597] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2268), 1, + ACTIONS(2278), 1, sym__latex_span_close, - STATE(676), 2, + STATE(655), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2266), 33, + ACTIONS(2272), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52800,11 +52557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10591] = 1, - ACTIONS(2124), 37, - sym__line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [10643] = 3, + ACTIONS(2280), 1, + anon_sym_BSLASH, + ACTIONS(2282), 1, + sym_block_continuation, + ACTIONS(2213), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -52831,23 +52590,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, - [10631] = 4, - ACTIONS(2256), 1, + [10687] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2272), 1, - sym__code_span_close, - STATE(670), 2, + ACTIONS(2284), 1, + sym__latex_span_close, + STATE(655), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2270), 33, + ACTIONS(2272), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52881,15 +52640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10677] = 4, - ACTIONS(2250), 1, + [10733] = 4, + ACTIONS(2242), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2276), 1, + ACTIONS(2288), 1, sym__latex_span_close, - STATE(672), 2, + STATE(664), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2274), 33, + ACTIONS(2286), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52923,15 +52682,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10723] = 4, - ACTIONS(2256), 1, + [10779] = 1, + ACTIONS(2104), 37, + sym__line_ending, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, aux_sym__commonmark_whitespace_token1, - ACTIONS(2278), 1, - sym__code_span_close, - STATE(661), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2258), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -52965,19 +52721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10769] = 4, - ACTIONS(2256), 1, + [10819] = 3, + ACTIONS(2280), 1, + anon_sym_BSLASH, + ACTIONS(2290), 1, + sym_block_continuation, + ACTIONS(2213), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2282), 1, - sym__code_span_close, - STATE(674), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2280), 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, @@ -52999,7 +52755,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__, @@ -53007,15 +52762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10815] = 4, - ACTIONS(2250), 1, + [10863] = 4, + ACTIONS(2254), 1, + sym__code_span_close, + ACTIONS(2292), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2284), 1, - sym__latex_span_close, - STATE(673), 2, + STATE(668), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2252), 33, + ACTIONS(2295), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53049,15 +52804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10861] = 4, - ACTIONS(2248), 1, - sym__latex_span_close, - ACTIONS(2286), 1, + [10909] = 4, + ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - STATE(673), 2, + ACTIONS(2300), 1, + sym__code_span_close, + STATE(659), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2289), 33, + ACTIONS(2298), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53091,15 +52846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10907] = 4, + [10955] = 4, ACTIONS(2256), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2292), 1, + ACTIONS(2304), 1, sym__code_span_close, - STATE(661), 2, + STATE(658), 2, sym__whitespace, aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2258), 33, + ACTIONS(2302), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53133,15 +52888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [10953] = 4, - ACTIONS(2256), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2296), 1, - sym__code_span_close, - STATE(663), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2294), 33, + [11001] = 3, + STATE(852), 1, + sym__caption_line, + ACTIONS(2308), 3, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__word, + ACTIONS(2306), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53174,20 +52928,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, - sym__word, - [10999] = 4, - ACTIONS(2250), 1, + [11044] = 2, + ACTIONS(2310), 1, + anon_sym_BSLASH, + ACTIONS(2230), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2298), 1, - sym__latex_span_close, - STATE(673), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2252), 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, @@ -53209,7 +52960,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__, @@ -53217,15 +52967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11045] = 4, - ACTIONS(2250), 1, + [11085] = 2, + ACTIONS(2312), 1, + anon_sym_BSLASH, + ACTIONS(2238), 35, + sym__soft_line_ending, aux_sym__commonmark_whitespace_token1, - ACTIONS(2302), 1, - sym__latex_span_close, - STATE(662), 2, - sym__whitespace, - aux_sym__pipe_table_code_span_repeat1, - ACTIONS(2300), 33, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53251,27 +52998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AT, anon_sym_LBRACK, - anon_sym_BSLASH, anon_sym_RBRACK, anon_sym_CARET, anon_sym__, anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [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, + [11126] = 3, + STATE(853), 1, + sym__caption_line, + ACTIONS(2308), 3, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__word, + ACTIONS(2306), 32, 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, @@ -53293,18 +53039,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, - [11135] = 2, - ACTIONS(2306), 1, - anon_sym_BSLASH, - ACTIONS(2198), 35, + [11169] = 1, + ACTIONS(2066), 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, @@ -53324,23 +53070,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, - anon_sym_BSLASH_DQUOTE, sym__word, - [11176] = 2, - ACTIONS(2308), 1, + [11208] = 2, + ACTIONS(2312), 1, anon_sym_BSLASH, ACTIONS(2238), 35, sym__soft_line_ending, @@ -53378,12 +53123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11217] = 2, - ACTIONS(2308), 1, - anon_sym_BSLASH, - ACTIONS(2238), 35, - sym__soft_line_ending, - aux_sym__commonmark_whitespace_token1, + [11249] = 3, + STATE(848), 1, + sym__caption_line, + ACTIONS(2308), 3, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, + sym__word, + ACTIONS(2306), 32, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53409,25 +53156,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, - [11258] = 2, - ACTIONS(2310), 1, + [11292] = 2, + ACTIONS(2314), 1, anon_sym_BSLASH, - ACTIONS(2187), 35, + ACTIONS(2199), 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, @@ -53455,12 +53200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_PIPE, anon_sym_TILDE, + anon_sym_BSLASH_DQUOTE, sym__word, - [11299] = 1, - ACTIONS(2094), 36, - sym__soft_line_ending, - sym__display_math_state_track_marker, - sym__inline_math_state_track_marker, + [11333] = 1, + ACTIONS(2066), 35, + sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, anon_sym_RBRACE, @@ -53480,6 +53224,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, @@ -53494,8 +53239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11338] = 1, - ACTIONS(2094), 35, + [11371] = 1, + ACTIONS(2254), 35, sym__code_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -53531,10 +53276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11376] = 1, - ACTIONS(2248), 35, - sym__code_span_close, - aux_sym__commonmark_whitespace_token1, + [11409] = 1, + ACTIONS(2066), 35, + sym__display_math_state_track_marker, + sym__inline_math_state_track_marker, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, @@ -53568,8 +53313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11414] = 1, - ACTIONS(2094), 35, + [11447] = 1, + ACTIONS(2254), 35, sym__latex_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -53605,8 +53350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11452] = 1, - ACTIONS(2248), 35, + [11485] = 1, + ACTIONS(2066), 35, sym__latex_span_close, aux_sym__commonmark_whitespace_token1, anon_sym_LBRACE, @@ -53642,44 +53387,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_TILDE, sym__word, - [11490] = 15, - ACTIONS(17), 1, + [11523] = 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(2312), 1, - ts_builtin_sym_end, - STATE(73), 1, + STATE(71), 1, sym__atx_heading1, STATE(85), 1, sym__atx_heading2, - STATE(90), 1, + STATE(89), 1, sym__atx_heading3, STATE(99), 1, sym__atx_heading4, - STATE(107), 1, + STATE(111), 1, sym__atx_heading5, - STATE(118), 1, + STATE(117), 1, sym__atx_heading6, - STATE(690), 2, + STATE(684), 2, sym_section, aux_sym_document_repeat2, - STATE(735), 6, + STATE(743), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [11542] = 15, + [11575] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -53692,68 +53437,68 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2314), 1, + ACTIONS(2336), 1, ts_builtin_sym_end, - STATE(73), 1, + STATE(71), 1, sym__atx_heading1, STATE(85), 1, sym__atx_heading2, - STATE(90), 1, + STATE(89), 1, sym__atx_heading3, STATE(99), 1, sym__atx_heading4, - STATE(107), 1, + STATE(111), 1, sym__atx_heading5, - STATE(118), 1, + STATE(117), 1, sym__atx_heading6, - STATE(690), 2, + STATE(684), 2, sym_section, aux_sym_document_repeat2, - STATE(735), 6, + STATE(743), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [11594] = 15, - ACTIONS(2316), 1, - ts_builtin_sym_end, - ACTIONS(2318), 1, + [11627] = 15, + ACTIONS(17), 1, sym_atx_h1_marker, - ACTIONS(2321), 1, + ACTIONS(19), 1, sym_atx_h2_marker, - ACTIONS(2324), 1, + ACTIONS(21), 1, sym_atx_h3_marker, - ACTIONS(2327), 1, + ACTIONS(23), 1, sym_atx_h4_marker, - ACTIONS(2330), 1, + ACTIONS(25), 1, sym_atx_h5_marker, - ACTIONS(2333), 1, + ACTIONS(27), 1, sym_atx_h6_marker, - STATE(73), 1, + ACTIONS(371), 1, + ts_builtin_sym_end, + STATE(71), 1, sym__atx_heading1, STATE(85), 1, sym__atx_heading2, - STATE(90), 1, + STATE(89), 1, sym__atx_heading3, STATE(99), 1, sym__atx_heading4, - STATE(107), 1, + STATE(111), 1, sym__atx_heading5, - STATE(118), 1, + STATE(117), 1, sym__atx_heading6, - STATE(690), 2, + STATE(684), 2, sym_section, aux_sym_document_repeat2, - STATE(735), 6, + STATE(743), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [11646] = 15, + [11679] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -53766,31 +53511,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(371), 1, + ACTIONS(2338), 1, ts_builtin_sym_end, - STATE(73), 1, + STATE(71), 1, sym__atx_heading1, STATE(85), 1, sym__atx_heading2, - STATE(90), 1, + STATE(89), 1, sym__atx_heading3, STATE(99), 1, sym__atx_heading4, - STATE(107), 1, + STATE(111), 1, sym__atx_heading5, - STATE(118), 1, + STATE(117), 1, sym__atx_heading6, - STATE(690), 2, + STATE(684), 2, sym_section, aux_sym_document_repeat2, - STATE(735), 6, + STATE(743), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [11698] = 15, + [11731] = 15, ACTIONS(17), 1, sym_atx_h1_marker, ACTIONS(19), 1, @@ -53803,31 +53548,31 @@ static const uint16_t ts_small_parse_table[] = { sym_atx_h5_marker, ACTIONS(27), 1, sym_atx_h6_marker, - ACTIONS(2336), 1, + ACTIONS(2340), 1, ts_builtin_sym_end, - STATE(73), 1, + STATE(71), 1, sym__atx_heading1, STATE(85), 1, sym__atx_heading2, - STATE(90), 1, + STATE(89), 1, sym__atx_heading3, STATE(99), 1, sym__atx_heading4, - STATE(107), 1, + STATE(111), 1, sym__atx_heading5, - STATE(118), 1, + STATE(117), 1, sym__atx_heading6, - STATE(690), 2, + STATE(684), 2, sym_section, aux_sym_document_repeat2, - STATE(735), 6, + STATE(743), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [11750] = 12, + [11783] = 12, ACTIONS(1748), 1, sym_raw_specifier, ACTIONS(1750), 1, @@ -53842,4694 +53587,4683 @@ static const uint16_t ts_small_parse_table[] = { sym_class_specifier, ACTIONS(1764), 1, sym_key_value_key, - STATE(704), 1, + STATE(696), 1, sym__commonmark_whitespace, - STATE(708), 1, + STATE(704), 1, aux_sym_commonmark_attribute_repeat1, - STATE(745), 1, + STATE(728), 1, aux_sym_commonmark_attribute_repeat2, - STATE(784), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(790), 1, + STATE(786), 1, sym__attribute, - [11787] = 8, - ACTIONS(1877), 1, + STATE(792), 1, + aux_sym_commonmark_attribute_repeat3, + [11820] = 8, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(520), 1, + STATE(525), 1, sym__newline, - STATE(706), 1, + STATE(712), 1, sym__whitespace, - STATE(933), 2, + STATE(960), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11815] = 8, - ACTIONS(1877), 1, + [11848] = 8, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(524), 1, + STATE(531), 1, sym__newline, - STATE(710), 1, + STATE(708), 1, sym__whitespace, - STATE(948), 2, + STATE(925), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11843] = 8, - ACTIONS(1861), 1, + [11876] = 8, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(514), 1, + STATE(532), 1, sym__newline, - STATE(705), 1, + STATE(701), 1, sym__whitespace, - STATE(927), 2, + STATE(936), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11871] = 8, - ACTIONS(1861), 1, + [11904] = 8, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(523), 1, + STATE(516), 1, sym__newline, - STATE(711), 1, + STATE(705), 1, sym__whitespace, - STATE(947), 2, + STATE(938), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11899] = 8, - ACTIONS(1861), 1, + [11932] = 8, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(531), 1, + STATE(517), 1, sym__newline, - STATE(713), 1, + STATE(706), 1, sym__whitespace, - STATE(968), 2, + STATE(940), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11927] = 8, - ACTIONS(1877), 1, + [11960] = 8, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(2338), 1, + ACTIONS(2342), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(532), 1, + STATE(524), 1, sym__newline, - STATE(714), 1, + STATE(711), 1, sym__whitespace, - STATE(969), 2, + STATE(958), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [11955] = 8, - ACTIONS(2344), 1, + [11988] = 10, + ACTIONS(1758), 1, + sym_id_specifier, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2348), 1, + sym_raw_specifier, + ACTIONS(2350), 1, + anon_sym_RBRACE, + ACTIONS(2352), 1, + sym_commonmark_name, + STATE(702), 1, + aux_sym_commonmark_attribute_repeat1, + STATE(740), 1, + aux_sym_commonmark_attribute_repeat2, + STATE(784), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(786), 1, + sym__attribute, + [12019] = 8, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2346), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2348), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(703), 1, + STATE(698), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(720), 1, + STATE(716), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(734), 1, + STATE(739), 1, sym__whitespace, - STATE(767), 1, + STATE(757), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2350), 3, + ACTIONS(2360), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [11982] = 8, - ACTIONS(2344), 1, + [12046] = 8, + ACTIONS(2362), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2346), 1, + ACTIONS(2365), 1, anon_sym_DASH, - ACTIONS(2348), 1, + ACTIONS(2368), 1, anon_sym_COLON, - STATE(703), 1, + STATE(698), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(720), 1, + STATE(788), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(749), 1, + STATE(826), 1, sym__whitespace, - STATE(772), 1, + STATE(835), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2352), 3, + ACTIONS(2371), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12009] = 8, - ACTIONS(2344), 1, + [12073] = 8, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2346), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2348), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(703), 1, + STATE(698), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(720), 1, + STATE(716), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(725), 1, + STATE(744), 1, sym__whitespace, - STATE(759), 1, + STATE(748), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2354), 3, + ACTIONS(2373), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12036] = 8, - ACTIONS(2356), 1, + [12100] = 8, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2359), 1, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2362), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(703), 1, + STATE(698), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(779), 1, + STATE(716), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(827), 1, + STATE(720), 1, sym__whitespace, - STATE(858), 1, + STATE(773), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2365), 3, + ACTIONS(2375), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12063] = 10, - ACTIONS(1758), 1, - sym_id_specifier, - ACTIONS(1760), 1, - sym_class_specifier, - ACTIONS(1764), 1, - sym_key_value_key, - ACTIONS(2367), 1, - sym_raw_specifier, - ACTIONS(2369), 1, - anon_sym_RBRACE, - ACTIONS(2371), 1, - sym_commonmark_name, - STATE(709), 1, - aux_sym_commonmark_attribute_repeat1, - STATE(727), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(781), 1, - aux_sym_commonmark_attribute_repeat3, - STATE(790), 1, - sym__attribute, - [12094] = 6, - ACTIONS(1861), 1, + [12127] = 6, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, STATE(522), 1, sym__newline, - STATE(892), 2, - sym__qmd_attribute, - sym_info_string, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [12116] = 6, - ACTIONS(1877), 1, - sym__line_ending, - ACTIONS(2340), 1, - anon_sym_LBRACE, - ACTIONS(2342), 1, - aux_sym_info_string_token1, - STATE(529), 1, - sym__newline, - STATE(897), 2, - sym__qmd_attribute, - sym_info_string, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [12138] = 6, - ACTIONS(2342), 1, - aux_sym_info_string_token1, - ACTIONS(2373), 1, - anon_sym_LBRACE, - ACTIONS(2375), 1, - anon_sym_LBRACE_RBRACE, - ACTIONS(2377), 1, - sym_fenced_div_note_id, - STATE(925), 2, + STATE(917), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12160] = 9, + [12149] = 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, + ACTIONS(2352), 1, sym_commonmark_name, - STATE(727), 1, + ACTIONS(2377), 1, + anon_sym_RBRACE, + STATE(730), 1, aux_sym_commonmark_attribute_repeat2, - STATE(763), 1, + STATE(761), 1, aux_sym_commonmark_attribute_repeat1, - STATE(781), 1, + STATE(777), 1, aux_sym_commonmark_attribute_repeat3, - STATE(790), 1, + STATE(786), 1, sym__attribute, - [12188] = 9, + [12177] = 9, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2381), 1, + anon_sym_DASH, + ACTIONS(2383), 1, + anon_sym_COLON, + ACTIONS(2385), 1, + anon_sym_PIPE, + STATE(699), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(763), 1, + sym_pipe_table_delimiter_row, + STATE(785), 1, + sym__whitespace, + STATE(788), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(835), 1, + sym_pipe_table_delimiter_cell, + [12205] = 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, + ACTIONS(2350), 1, anon_sym_RBRACE, - STATE(733), 1, + ACTIONS(2352), 1, + sym_commonmark_name, + STATE(740), 1, aux_sym_commonmark_attribute_repeat2, - STATE(763), 1, + STATE(761), 1, aux_sym_commonmark_attribute_repeat1, - STATE(790), 1, - sym__attribute, - STATE(794), 1, + STATE(784), 1, aux_sym_commonmark_attribute_repeat3, - [12216] = 6, - ACTIONS(1877), 1, + STATE(786), 1, + sym__attribute, + [12233] = 6, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(539), 1, + STATE(533), 1, sym__newline, - STATE(954), 2, + STATE(944), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12238] = 6, - ACTIONS(1861), 1, + [12255] = 6, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(525), 1, + STATE(519), 1, sym__newline, - STATE(953), 2, + STATE(945), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12260] = 9, - ACTIONS(2381), 1, + [12277] = 6, + ACTIONS(2346), 1, + aux_sym_info_string_token1, + ACTIONS(2387), 1, + anon_sym_LBRACE, + ACTIONS(2389), 1, + anon_sym_LBRACE_RBRACE, + ACTIONS(2391), 1, + sym_fenced_div_note_id, + STATE(952), 2, + sym__qmd_attribute, + sym_info_string, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12299] = 6, + ACTIONS(1867), 1, + sym__line_ending, + ACTIONS(2344), 1, + anon_sym_LBRACE, + ACTIONS(2346), 1, + aux_sym_info_string_token1, + STATE(514), 1, + sym__newline, + STATE(907), 2, + sym__qmd_attribute, + sym_info_string, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12321] = 9, + ACTIONS(2379), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2383), 1, + ACTIONS(2381), 1, anon_sym_DASH, - ACTIONS(2385), 1, + ACTIONS(2383), 1, anon_sym_COLON, - ACTIONS(2387), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - STATE(702), 1, + STATE(699), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(773), 1, + 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, + STATE(788), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(835), 1, sym_pipe_table_delimiter_cell, - [12288] = 6, - ACTIONS(1861), 1, + [12349] = 6, + ACTIONS(2346), 1, + aux_sym_info_string_token1, + ACTIONS(2387), 1, + anon_sym_LBRACE, + ACTIONS(2393), 1, + anon_sym_LBRACE_RBRACE, + ACTIONS(2395), 1, + sym_fenced_div_note_id, + STATE(971), 2, + sym__qmd_attribute, + sym_info_string, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12371] = 6, + ACTIONS(1867), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(533), 1, + STATE(526), 1, sym__newline, - STATE(971), 2, + STATE(967), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12310] = 6, - ACTIONS(1877), 1, + [12393] = 6, + ACTIONS(1881), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - ACTIONS(2342), 1, + ACTIONS(2346), 1, aux_sym_info_string_token1, - STATE(534), 1, + STATE(527), 1, sym__newline, - STATE(972), 2, + STATE(968), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12332] = 9, - ACTIONS(2381), 1, + [12415] = 9, + ACTIONS(2379), 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(753), 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, - [12360] = 9, ACTIONS(2381), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2383), 1, anon_sym_DASH, - ACTIONS(2385), 1, + ACTIONS(2383), 1, anon_sym_COLON, - ACTIONS(2387), 1, + ACTIONS(2385), 1, anon_sym_PIPE, - STATE(702), 1, + STATE(699), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(750), 1, + STATE(756), 1, sym_pipe_table_delimiter_row, - STATE(779), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, STATE(785), 1, sym__whitespace, - STATE(858), 1, + STATE(788), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(835), 1, sym_pipe_table_delimiter_cell, - [12388] = 6, - ACTIONS(2342), 1, - aux_sym_info_string_token1, - ACTIONS(2373), 1, - anon_sym_LBRACE, - ACTIONS(2389), 1, - anon_sym_LBRACE_RBRACE, - ACTIONS(2391), 1, - sym_fenced_div_note_id, - STATE(956), 2, - sym__qmd_attribute, - sym_info_string, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [12410] = 6, - ACTIONS(2342), 1, + [12443] = 6, + ACTIONS(2346), 1, aux_sym_info_string_token1, - ACTIONS(2373), 1, + ACTIONS(2387), 1, anon_sym_LBRACE, - ACTIONS(2393), 1, + ACTIONS(2397), 1, anon_sym_LBRACE_RBRACE, - ACTIONS(2395), 1, + ACTIONS(2399), 1, sym_fenced_div_note_id, - STATE(974), 2, + STATE(947), 2, sym__qmd_attribute, sym_info_string, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12432] = 4, - ACTIONS(2399), 1, + [12465] = 4, + ACTIONS(2403), 1, anon_sym_DASH, - ACTIONS(2401), 1, + ACTIONS(2405), 1, anon_sym_COLON, - STATE(721), 1, + STATE(717), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2397), 5, + ACTIONS(2401), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [12449] = 4, - ACTIONS(2399), 1, + [12482] = 4, + ACTIONS(2403), 1, anon_sym_DASH, - ACTIONS(2405), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(721), 1, + STATE(717), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2403), 5, + ACTIONS(2407), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [12466] = 3, - ACTIONS(2409), 1, + [12499] = 3, + ACTIONS(2413), 1, anon_sym_DASH, - STATE(721), 1, + STATE(717), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(2407), 6, + ACTIONS(2411), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [12481] = 5, - ACTIONS(1853), 1, - sym__line_ending, - ACTIONS(2340), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym__newline, - STATE(923), 1, - sym__qmd_attribute, - STATE(1030), 3, - sym_raw_attribute, - sym_commonmark_attribute, - sym_language_attribute, - [12499] = 5, - ACTIONS(1810), 1, + [12514] = 5, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(448), 1, + STATE(444), 1, sym__newline, - STATE(945), 1, + STATE(891), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12517] = 5, - ACTIONS(1810), 1, + [12532] = 5, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(452), 1, + STATE(439), 1, sym__newline, - STATE(978), 1, + STATE(883), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12535] = 5, - ACTIONS(2346), 1, + [12550] = 5, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2348), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(720), 1, + STATE(716), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(751), 1, + STATE(770), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2350), 3, + ACTIONS(2416), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12553] = 5, - ACTIONS(1810), 1, + [12568] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(371), 1, sym__newline, - STATE(963), 1, + STATE(872), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [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, + [12586] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(289), 1, + STATE(373), 1, sym__newline, - STATE(919), 1, + STATE(873), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12611] = 5, - ACTIONS(1853), 1, + [12604] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(291), 1, + STATE(375), 1, sym__newline, - STATE(920), 1, + STATE(874), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12629] = 5, - ACTIONS(1853), 1, + [12622] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(299), 1, + STATE(377), 1, sym__newline, - STATE(921), 1, + STATE(875), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12647] = 5, - ACTIONS(1853), 1, + [12640] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(301), 1, + STATE(379), 1, sym__newline, - STATE(922), 1, + STATE(876), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12665] = 5, - ACTIONS(1853), 1, + [12658] = 5, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(305), 1, + STATE(381), 1, sym__newline, - STATE(924), 1, + STATE(877), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12683] = 7, + [12676] = 4, + ACTIONS(2418), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2422), 1, + sym_key_value_key, + STATE(776), 1, + sym__commonmark_whitespace, + ACTIONS(2420), 4, + anon_sym_RBRACE, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [12692] = 7, ACTIONS(1760), 1, sym_class_specifier, ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2371), 1, - sym_commonmark_name, - ACTIONS(2412), 1, + ACTIONS(2350), 1, anon_sym_RBRACE, - STATE(778), 1, + ACTIONS(2352), 1, + sym_commonmark_name, + STATE(784), 1, aux_sym_commonmark_attribute_repeat3, - STATE(783), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(790), 1, + STATE(786), 1, sym__attribute, - [12705] = 5, - ACTIONS(2346), 1, + STATE(787), 1, + aux_sym_commonmark_attribute_repeat2, + [12714] = 7, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2381), 1, anon_sym_DASH, - ACTIONS(2348), 1, + ACTIONS(2383), 1, anon_sym_COLON, - STATE(720), 1, + STATE(700), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(788), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(771), 1, + STATE(826), 1, + sym__whitespace, + STATE(835), 1, sym_pipe_table_delimiter_cell, - ACTIONS(2352), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [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, + [12736] = 7, + ACTIONS(1760), 1, + sym_class_specifier, + ACTIONS(1764), 1, sym_key_value_key, - STATE(792), 1, - sym__commonmark_whitespace, - ACTIONS(2416), 4, - anon_sym_RBRACE, + ACTIONS(2352), 1, sym_commonmark_name, - sym_id_specifier, - sym_class_specifier, - [12749] = 5, - ACTIONS(1808), 1, + ACTIONS(2424), 1, + anon_sym_RBRACE, + STATE(780), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(786), 1, + sym__attribute, + STATE(787), 1, + aux_sym_commonmark_attribute_repeat2, + [12758] = 5, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(373), 1, + STATE(448), 1, sym__newline, - STATE(877), 1, + STATE(900), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12767] = 5, - ACTIONS(1808), 1, + [12776] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(375), 1, + STATE(267), 1, sym__newline, - STATE(878), 1, + STATE(908), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12785] = 5, - ACTIONS(1808), 1, + [12794] = 5, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(2344), 1, + anon_sym_LBRACE, + STATE(272), 1, + sym__newline, + STATE(909), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12812] = 5, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(2344), 1, + anon_sym_LBRACE, + STATE(274), 1, + sym__newline, + STATE(910), 1, + sym__qmd_attribute, + STATE(1008), 3, + sym_raw_attribute, + sym_commonmark_attribute, + sym_language_attribute, + [12830] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(377), 1, + STATE(280), 1, sym__newline, - STATE(879), 1, + STATE(911), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12803] = 5, - ACTIONS(1808), 1, + [12848] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(290), 1, sym__newline, - STATE(880), 1, + STATE(912), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12821] = 5, - ACTIONS(1808), 1, + [12866] = 5, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(308), 1, sym__newline, - STATE(881), 1, + STATE(913), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12839] = 5, - ACTIONS(1808), 1, + [12884] = 5, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(383), 1, + STATE(450), 1, sym__newline, - STATE(882), 1, + STATE(905), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12857] = 7, - ACTIONS(2381), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2383), 1, + [12902] = 5, + ACTIONS(2356), 1, anon_sym_DASH, - ACTIONS(2385), 1, + ACTIONS(2358), 1, anon_sym_COLON, - STATE(700), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(779), 1, + STATE(716), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(827), 1, - sym__whitespace, - STATE(858), 1, + STATE(771), 1, sym_pipe_table_delimiter_cell, - [12879] = 5, - ACTIONS(1810), 1, + ACTIONS(2375), 3, 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, + sym__eof, + sym__pipe_table_line_ending, + [12920] = 7, ACTIONS(1760), 1, sym_class_specifier, ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2369), 1, - anon_sym_RBRACE, - ACTIONS(2371), 1, + ACTIONS(2352), 1, sym_commonmark_name, - STATE(781), 1, + ACTIONS(2377), 1, + anon_sym_RBRACE, + STATE(777), 1, aux_sym_commonmark_attribute_repeat3, - STATE(783), 1, - aux_sym_commonmark_attribute_repeat2, - STATE(790), 1, + STATE(786), 1, sym__attribute, - [12919] = 5, - ACTIONS(1810), 1, + STATE(787), 1, + aux_sym_commonmark_attribute_repeat2, + [12942] = 7, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2381), 1, + anon_sym_DASH, + ACTIONS(2383), 1, + anon_sym_COLON, + STATE(697), 1, + aux_sym_pipe_table_delimiter_row_repeat1, + STATE(788), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(826), 1, + sym__whitespace, + STATE(835), 1, + sym_pipe_table_delimiter_cell, + [12964] = 5, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2340), 1, + ACTIONS(2344), 1, anon_sym_LBRACE, - STATE(454), 1, + STATE(442), 1, sym__newline, - STATE(885), 1, + STATE(890), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12937] = 5, - ACTIONS(1810), 1, + [12982] = 1, + ACTIONS(1550), 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, + [12992] = 5, + ACTIONS(2356), 1, + anon_sym_DASH, + ACTIONS(2358), 1, + anon_sym_COLON, + STATE(716), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(769), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(2360), 3, sym__line_ending, - ACTIONS(2340), 1, + sym__eof, + sym__pipe_table_line_ending, + [13010] = 5, + ACTIONS(1820), 1, + sym__line_ending, + ACTIONS(2344), 1, anon_sym_LBRACE, STATE(446), 1, sym__newline, - STATE(940), 1, + STATE(893), 1, sym__qmd_attribute, - STATE(1030), 3, + STATE(1008), 3, sym_raw_attribute, sym_commonmark_attribute, sym_language_attribute, - [12955] = 7, - ACTIONS(2381), 1, + [13028] = 6, + ACTIONS(2426), 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, + ACTIONS(2428), 1, + aux_sym_key_value_value_token1, + ACTIONS(2430), 1, + anon_sym_SQUOTE, + ACTIONS(2432), 1, + anon_sym_DQUOTE, + STATE(808), 1, + sym_key_value_value, + STATE(815), 1, + sym__commonmark_whitespace, + [13047] = 4, + ACTIONS(2434), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2438), 1, + sym_key_value_key, + STATE(820), 1, + sym__commonmark_whitespace, + ACTIONS(2436), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [13062] = 4, + ACTIONS(2354), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2440), 1, + anon_sym_PIPE, + STATE(806), 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, + ACTIONS(2360), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [12995] = 6, - ACTIONS(1810), 1, + [13077] = 1, + ACTIONS(2066), 6, sym__line_ending, - ACTIONS(2422), 1, sym__eof, - ACTIONS(2424), 1, sym__pipe_table_line_ending, - STATE(176), 1, - sym__newline, - STATE(479), 1, - sym__pipe_table_newline, - STATE(768), 1, - aux_sym_pipe_table_repeat1, - [13014] = 4, - ACTIONS(2344), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2426), 1, + anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - STATE(798), 1, - sym__whitespace, - ACTIONS(2352), 3, + [13086] = 6, + ACTIONS(1851), 1, sym__line_ending, + ACTIONS(2442), 1, sym__eof, + ACTIONS(2444), 1, sym__pipe_table_line_ending, - [13029] = 4, - ACTIONS(2344), 1, + STATE(413), 1, + sym__newline, + STATE(473), 1, + sym__pipe_table_newline, + STATE(752), 1, + aux_sym_pipe_table_repeat1, + [13105] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, + ACTIONS(2446), 1, anon_sym_PIPE, - STATE(808), 1, + STATE(797), 1, sym__whitespace, - ACTIONS(1798), 3, + ACTIONS(1768), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13044] = 6, - ACTIONS(1853), 1, + [13120] = 6, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2424), 1, + ACTIONS(2444), 1, sym__pipe_table_line_ending, - ACTIONS(2430), 1, + ACTIONS(2448), 1, sym__eof, - STATE(147), 1, + STATE(424), 1, sym__newline, - STATE(479), 1, + STATE(473), 1, sym__pipe_table_newline, - STATE(756), 1, + STATE(793), 1, aux_sym_pipe_table_repeat1, - [13063] = 6, - ACTIONS(2432), 1, - aux_sym__commonmark_whitespace_token1, - 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, - STATE(806), 1, - sym__commonmark_whitespace, - [13082] = 4, - ACTIONS(2344), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2440), 1, - anon_sym_PIPE, - STATE(822), 1, - sym__whitespace, - ACTIONS(1879), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [13097] = 6, - ACTIONS(1853), 1, + [13139] = 6, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2424), 1, + ACTIONS(2444), 1, sym__pipe_table_line_ending, - ACTIONS(2442), 1, + ACTIONS(2450), 1, sym__eof, - STATE(148), 1, + STATE(334), 1, sym__newline, - STATE(479), 1, + STATE(473), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - [13116] = 4, - ACTIONS(2344), 1, + [13158] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, + ACTIONS(2452), 1, anon_sym_PIPE, - STATE(821), 1, + STATE(799), 1, sym__whitespace, - ACTIONS(1879), 3, + ACTIONS(1768), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13131] = 4, - ACTIONS(2344), 1, + [13173] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2440), 1, + ACTIONS(2446), 1, anon_sym_PIPE, - STATE(804), 1, + STATE(814), 1, sym__whitespace, - ACTIONS(1798), 3, + ACTIONS(1887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13146] = 4, - ACTIONS(2344), 1, - aux_sym__commonmark_whitespace_token1, + [13188] = 6, + ACTIONS(1853), 1, + sym__line_ending, ACTIONS(2444), 1, + sym__pipe_table_line_ending, + ACTIONS(2454), 1, + sym__eof, + STATE(243), 1, + sym__newline, + STATE(473), 1, + sym__pipe_table_newline, + STATE(758), 1, + aux_sym_pipe_table_repeat1, + [13207] = 4, + ACTIONS(2354), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2440), 1, anon_sym_PIPE, - STATE(823), 1, + STATE(805), 1, sym__whitespace, - ACTIONS(2350), 3, + ACTIONS(2375), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [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, + [13222] = 6, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2424), 1, + ACTIONS(2444), 1, sym__pipe_table_line_ending, - ACTIONS(2452), 1, + ACTIONS(2456), 1, sym__eof, - STATE(180), 1, + STATE(254), 1, sym__newline, - STATE(479), 1, + STATE(473), 1, sym__pipe_table_newline, STATE(793), 1, aux_sym_pipe_table_repeat1, - [13195] = 6, - ACTIONS(2434), 1, + [13241] = 4, + ACTIONS(2354), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2452), 1, + anon_sym_PIPE, + STATE(825), 1, + sym__whitespace, + ACTIONS(1887), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13256] = 6, + ACTIONS(2428), 1, aux_sym_key_value_value_token1, - ACTIONS(2436), 1, + ACTIONS(2430), 1, anon_sym_SQUOTE, - ACTIONS(2438), 1, + ACTIONS(2432), 1, anon_sym_DQUOTE, - ACTIONS(2454), 1, + ACTIONS(2458), 1, aux_sym__commonmark_whitespace_token1, - STATE(818), 1, - sym_key_value_value, - STATE(826), 1, + STATE(801), 1, sym__commonmark_whitespace, - [13214] = 4, - ACTIONS(2458), 1, + STATE(822), 1, + sym_key_value_value, + [13275] = 4, + ACTIONS(2462), 1, sym_id_specifier, - ACTIONS(2461), 1, + ACTIONS(2465), 1, sym_key_value_key, - STATE(763), 1, + STATE(761), 1, aux_sym_commonmark_attribute_repeat1, - ACTIONS(2456), 3, + ACTIONS(2460), 3, anon_sym_RBRACE, sym_commonmark_name, sym_class_specifier, - [13229] = 4, - ACTIONS(2344), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2426), 1, - anon_sym_PIPE, - STATE(810), 1, - sym__whitespace, - ACTIONS(2463), 3, + [13290] = 1, + ACTIONS(2467), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13244] = 4, - ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2440), 1, + anon_sym_DASH, + anon_sym_COLON, + [13299] = 6, + ACTIONS(1820), 1, + sym__line_ending, + ACTIONS(2444), 1, + sym__pipe_table_line_ending, + ACTIONS(2469), 1, + sym__eof, + STATE(323), 1, + sym__newline, + STATE(473), 1, + sym__pipe_table_newline, + STATE(753), 1, + aux_sym_pipe_table_repeat1, + [13318] = 4, + ACTIONS(2354), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2446), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(828), 1, sym__whitespace, - ACTIONS(1790), 3, + ACTIONS(2471), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13333] = 1, + ACTIONS(2473), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13259] = 4, - ACTIONS(2344), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, + anon_sym_DASH, + anon_sym_COLON, + [13342] = 4, + ACTIONS(2354), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2446), 1, anon_sym_PIPE, STATE(812), 1, sym__whitespace, - ACTIONS(1788), 3, + ACTIONS(1798), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13274] = 4, - ACTIONS(2344), 1, + [13357] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2444), 1, + ACTIONS(2452), 1, anon_sym_PIPE, - STATE(796), 1, + STATE(802), 1, sym__whitespace, - ACTIONS(2352), 3, + ACTIONS(1796), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13289] = 6, - ACTIONS(1810), 1, - sym__line_ending, - ACTIONS(2424), 1, - sym__pipe_table_line_ending, - ACTIONS(2465), 1, - sym__eof, - STATE(183), 1, - sym__newline, - STATE(479), 1, - sym__pipe_table_newline, - STATE(793), 1, - aux_sym_pipe_table_repeat1, - [13308] = 1, - ACTIONS(2094), 6, + [13372] = 1, + ACTIONS(2371), 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, - [13317] = 4, - ACTIONS(2344), 1, + [13381] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, + ACTIONS(2475), 1, anon_sym_PIPE, - STATE(825), 1, + STATE(813), 1, sym__whitespace, - ACTIONS(2467), 3, + ACTIONS(2375), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13332] = 4, - ACTIONS(2344), 1, + [13396] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2426), 1, + ACTIONS(2475), 1, anon_sym_PIPE, - STATE(801), 1, + STATE(796), 1, sym__whitespace, - ACTIONS(2420), 3, + ACTIONS(2477), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13347] = 4, - ACTIONS(2344), 1, + [13411] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2444), 1, + ACTIONS(2475), 1, anon_sym_PIPE, - STATE(807), 1, + STATE(811), 1, sym__whitespace, - ACTIONS(2420), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [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, - aux_sym_pipe_table_repeat1, - [13381] = 1, - ACTIONS(2471), 6, + ACTIONS(2416), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, + [13426] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [13390] = 1, - ACTIONS(2473), 6, + ACTIONS(2452), 1, + anon_sym_PIPE, + STATE(809), 1, + sym__whitespace, + ACTIONS(1798), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - [13399] = 4, - ACTIONS(2344), 1, + [13441] = 4, + ACTIONS(2354), 1, aux_sym__commonmark_whitespace_token1, ACTIONS(2440), 1, anon_sym_PIPE, - STATE(813), 1, + STATE(821), 1, sym__whitespace, - ACTIONS(1788), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [13414] = 1, - ACTIONS(2365), 6, + ACTIONS(2416), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - aux_sym__commonmark_whitespace_token1, + [13456] = 5, + ACTIONS(2479), 1, + anon_sym_RBRACE, + ACTIONS(2481), 1, + sym_commonmark_name, + ACTIONS(2484), 1, + sym_key_value_key, + STATE(774), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(786), 1, + sym__attribute, + [13472] = 4, + ACTIONS(2487), 1, anon_sym_DASH, + ACTIONS(2489), 1, anon_sym_COLON, - [13423] = 5, + STATE(790), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2401), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [13486] = 2, + ACTIONS(2465), 1, + sym_key_value_key, + ACTIONS(2460), 4, + anon_sym_RBRACE, + sym_commonmark_name, + sym_id_specifier, + sym_class_specifier, + [13496] = 5, ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2371), 1, + ACTIONS(2352), 1, sym_commonmark_name, - ACTIONS(2475), 1, + ACTIONS(2424), 1, anon_sym_RBRACE, - STATE(790), 1, - sym__attribute, - STATE(791), 1, + STATE(774), 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(2403), 2, + STATE(786), 1, + sym__attribute, + [13512] = 1, + ACTIONS(2491), 5, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [13453] = 1, - ACTIONS(2481), 5, + [13520] = 1, + ACTIONS(2493), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [13461] = 5, + [13528] = 5, ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2371), 1, + ACTIONS(2352), 1, sym_commonmark_name, - ACTIONS(2379), 1, + ACTIONS(2495), 1, anon_sym_RBRACE, - STATE(790), 1, - sym__attribute, - STATE(791), 1, + STATE(774), 1, aux_sym_commonmark_attribute_repeat3, - [13477] = 1, - ACTIONS(2483), 5, + STATE(786), 1, + sym__attribute, + [13544] = 5, + ACTIONS(1820), 1, sym__line_ending, + ACTIONS(2497), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2499), 1, sym__eof, - sym__pipe_table_line_ending, + STATE(456), 1, + sym__newline, + STATE(671), 1, + sym__whitespace, + [13560] = 5, + ACTIONS(1853), 1, + sym__line_ending, + ACTIONS(2497), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2501), 1, + sym__eof, + STATE(212), 1, + sym__newline, + STATE(677), 1, + sym__whitespace, + [13576] = 2, + ACTIONS(2503), 1, + sym_block_continuation, + ACTIONS(1382), 4, aux_sym__commonmark_whitespace_token1, + anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - [13485] = 4, - ACTIONS(2487), 1, - sym_class_specifier, - ACTIONS(2490), 1, - sym_key_value_key, - STATE(783), 1, - aux_sym_commonmark_attribute_repeat2, - ACTIONS(2485), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [13499] = 5, + [13586] = 5, ACTIONS(1764), 1, sym_key_value_key, - ACTIONS(2369), 1, - anon_sym_RBRACE, - ACTIONS(2371), 1, + ACTIONS(2352), 1, sym_commonmark_name, - STATE(790), 1, - sym__attribute, - STATE(791), 1, + ACTIONS(2377), 1, + anon_sym_RBRACE, + STATE(774), 1, aux_sym_commonmark_attribute_repeat3, - [13515] = 5, - ACTIONS(2383), 1, + STATE(786), 1, + sym__attribute, + [13602] = 5, + ACTIONS(2381), 1, anon_sym_DASH, - ACTIONS(2385), 1, + ACTIONS(2383), 1, anon_sym_COLON, - ACTIONS(2492), 1, + ACTIONS(2505), 1, anon_sym_PIPE, - STATE(779), 1, + STATE(788), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(866), 1, + STATE(851), 1, sym_pipe_table_delimiter_cell, - [13531] = 2, - ACTIONS(2494), 1, - sym_block_continuation, - ACTIONS(1350), 4, - aux_sym__commonmark_whitespace_token1, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_PIPE, - [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, - [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, + [13618] = 4, ACTIONS(2507), 1, - sym_key_value_key, - STATE(874), 1, - sym__commonmark_whitespace, - ACTIONS(2505), 2, - anon_sym_RBRACE, - sym_commonmark_name, - [13589] = 5, - ACTIONS(2509), 1, - anon_sym_RBRACE, + aux_sym__commonmark_whitespace_token1, ACTIONS(2511), 1, - sym_commonmark_name, - ACTIONS(2514), 1, - sym_key_value_key, - STATE(790), 1, - sym__attribute, - STATE(791), 1, - aux_sym_commonmark_attribute_repeat3, - [13605] = 2, - ACTIONS(2461), 1, sym_key_value_key, - ACTIONS(2456), 4, + STATE(867), 1, + sym__commonmark_whitespace, + ACTIONS(2509), 2, anon_sym_RBRACE, sym_commonmark_name, - sym_id_specifier, + [13632] = 4, + ACTIONS(2515), 1, sym_class_specifier, - [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(2522), 3, - aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [13654] = 2, - ACTIONS(2426), 1, - anon_sym_PIPE, - ACTIONS(2420), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [13663] = 2, - ACTIONS(2528), 1, + ACTIONS(2518), 1, sym_key_value_key, - ACTIONS(2526), 3, - aux_sym__commonmark_whitespace_token1, + STATE(787), 1, + aux_sym_commonmark_attribute_repeat2, + ACTIONS(2513), 2, anon_sym_RBRACE, sym_commonmark_name, - [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(2094), 3, - sym_fenced_div_note_id, - anon_sym_LBRACE_RBRACE, - aux_sym_info_string_token1, - [13690] = 2, - ACTIONS(2534), 1, - sym_key_value_key, - ACTIONS(2532), 3, + [13646] = 4, + ACTIONS(2487), 1, + anon_sym_DASH, + ACTIONS(2520), 1, + anon_sym_COLON, + STATE(790), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2407), 2, aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [13699] = 2, - ACTIONS(2530), 1, anon_sym_PIPE, - ACTIONS(2463), 3, + [13660] = 1, + ACTIONS(2522), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13708] = 1, - ACTIONS(1424), 4, aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [13668] = 3, + ACTIONS(2524), 1, anon_sym_DASH, + STATE(790), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + ACTIONS(2411), 3, + aux_sym__commonmark_whitespace_token1, anon_sym_COLON, anon_sym_PIPE, - [13715] = 4, - ACTIONS(2536), 1, + [13680] = 5, + ACTIONS(1851), 1, + sym__line_ending, + ACTIONS(2497), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2538), 1, + ACTIONS(2527), 1, + sym__eof, + STATE(390), 1, + sym__newline, + STATE(674), 1, + sym__whitespace, + [13696] = 5, + ACTIONS(1764), 1, + sym_key_value_key, + ACTIONS(2350), 1, anon_sym_RBRACE, - ACTIONS(2540), 1, - anon_sym_EQ, - STATE(1055), 1, - sym__commonmark_whitespace, - [13728] = 2, - ACTIONS(2428), 1, - anon_sym_PIPE, - ACTIONS(1788), 3, + ACTIONS(2352), 1, + sym_commonmark_name, + STATE(774), 1, + aux_sym_commonmark_attribute_repeat3, + STATE(786), 1, + sym__attribute, + [13712] = 4, + ACTIONS(2531), 1, + sym__pipe_table_line_ending, + STATE(473), 1, + sym__pipe_table_newline, + STATE(793), 1, + aux_sym_pipe_table_repeat1, + ACTIONS(2529), 2, sym__line_ending, sym__eof, - sym__pipe_table_line_ending, - [13737] = 4, - ACTIONS(1790), 1, + [13726] = 4, + ACTIONS(2534), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2536), 1, + anon_sym_RBRACE, + ACTIONS(2538), 1, + anon_sym_EQ, + STATE(1068), 1, + sym__commonmark_whitespace, + [13739] = 4, + ACTIONS(2471), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2544), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - STATE(916), 1, + STATE(982), 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, + [13752] = 2, + ACTIONS(2544), 1, anon_sym_PIPE, - ACTIONS(2463), 3, + ACTIONS(2546), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13772] = 2, - ACTIONS(2546), 1, + [13761] = 2, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(1788), 3, + ACTIONS(1887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13781] = 4, - ACTIONS(1879), 1, - sym__line_ending, - ACTIONS(2542), 1, + [13770] = 1, + ACTIONS(1426), 4, aux_sym__commonmark_whitespace_token1, - ACTIONS(2548), 1, + anon_sym_DASH, + anon_sym_COLON, anon_sym_PIPE, - STATE(883), 1, - sym__whitespace, - [13794] = 2, - ACTIONS(2530), 1, + [13777] = 2, + ACTIONS(2446), 1, anon_sym_PIPE, - ACTIONS(2550), 3, + ACTIONS(1887), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13803] = 2, - ACTIONS(2490), 1, + [13786] = 2, + ACTIONS(2552), 1, sym_key_value_key, - ACTIONS(2485), 3, + ACTIONS(2550), 3, + aux_sym__commonmark_whitespace_token1, anon_sym_RBRACE, sym_commonmark_name, - sym_class_specifier, - [13812] = 2, - ACTIONS(2546), 1, - anon_sym_PIPE, - ACTIONS(1879), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [13821] = 2, + [13795] = 4, ACTIONS(2428), 1, + aux_sym_key_value_value_token1, + ACTIONS(2430), 1, + anon_sym_SQUOTE, + ACTIONS(2432), 1, + anon_sym_DQUOTE, + STATE(808), 1, + sym_key_value_value, + [13808] = 2, + ACTIONS(2446), 1, anon_sym_PIPE, - ACTIONS(1879), 3, + ACTIONS(1798), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13830] = 4, - ACTIONS(1788), 1, + [13817] = 4, + ACTIONS(1768), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2548), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - STATE(937), 1, + STATE(889), 1, sym__whitespace, - [13843] = 4, - ACTIONS(1879), 1, + [13830] = 4, + ACTIONS(1798), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2544), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - STATE(889), 1, + STATE(921), 1, sym__whitespace, - [13856] = 4, - ACTIONS(1788), 1, + [13843] = 2, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2416), 3, sym__line_ending, - ACTIONS(2542), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2544), 1, + sym__eof, + sym__pipe_table_line_ending, + [13852] = 2, + ACTIONS(2475), 1, anon_sym_PIPE, - STATE(900), 1, - sym__whitespace, - [13869] = 4, + ACTIONS(2375), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [13861] = 4, ACTIONS(1798), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2544), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - STATE(899), 1, + STATE(934), 1, sym__whitespace, - [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, + [13874] = 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(2542), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2548), 1, - anon_sym_PIPE, - STATE(938), 1, - sym__whitespace, - [13913] = 2, - ACTIONS(2546), 1, + [13883] = 2, + ACTIONS(2446), 1, anon_sym_PIPE, - ACTIONS(2467), 3, + ACTIONS(1768), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13922] = 2, - ACTIONS(2428), 1, + [13892] = 4, + ACTIONS(1768), 1, + sym__line_ending, + ACTIONS(2540), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2542), 1, + anon_sym_PIPE, + STATE(976), 1, + sym__whitespace, + [13905] = 2, + ACTIONS(2544), 1, anon_sym_PIPE, - ACTIONS(2467), 3, + ACTIONS(2477), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13931] = 2, - ACTIONS(2426), 1, + [13914] = 2, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(2352), 3, + ACTIONS(1768), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13940] = 2, - ACTIONS(2428), 1, + [13923] = 2, + ACTIONS(2544), 1, anon_sym_PIPE, - ACTIONS(1798), 3, + ACTIONS(2416), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13949] = 2, - ACTIONS(2546), 1, + [13932] = 2, + ACTIONS(2548), 1, anon_sym_PIPE, - ACTIONS(2560), 3, + ACTIONS(2471), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [13958] = 4, - ACTIONS(2434), 1, + [13941] = 4, + ACTIONS(2428), 1, aux_sym_key_value_value_token1, - ACTIONS(2436), 1, + ACTIONS(2430), 1, anon_sym_SQUOTE, - ACTIONS(2438), 1, + ACTIONS(2432), 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(2562), 3, - aux_sym__commonmark_whitespace_token1, - anon_sym_RBRACE, - sym_commonmark_name, - [13993] = 4, - ACTIONS(2467), 1, + [13954] = 4, + ACTIONS(1796), 1, sym__line_ending, - ACTIONS(2542), 1, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2548), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - STATE(983), 1, + STATE(943), 1, sym__whitespace, - [14006] = 3, + [13967] = 2, + ACTIONS(2562), 1, + sym_key_value_key, + ACTIONS(2560), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13976] = 2, ACTIONS(2566), 1, - sym__line_ending, - ACTIONS(2568), 1, - sym__eof, - STATE(1001), 1, - sym__newline, - [14016] = 3, - ACTIONS(1808), 1, - sym__line_ending, + sym_key_value_key, + ACTIONS(2564), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13985] = 2, ACTIONS(2570), 1, - sym__eof, - STATE(432), 1, - sym__newline, - [14026] = 3, - ACTIONS(1808), 1, + sym_key_value_key, + ACTIONS(2568), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [13994] = 2, + ACTIONS(2518), 1, + sym_key_value_key, + ACTIONS(2513), 3, + anon_sym_RBRACE, + sym_commonmark_name, + sym_class_specifier, + [14003] = 2, + ACTIONS(2475), 1, + anon_sym_PIPE, + ACTIONS(2477), 3, sym__line_ending, - ACTIONS(2572), 1, sym__eof, - STATE(435), 1, - sym__newline, - [14036] = 1, - ACTIONS(2483), 3, + sym__pipe_table_line_ending, + [14012] = 2, + ACTIONS(2574), 1, + sym_key_value_key, + ACTIONS(2572), 3, + aux_sym__commonmark_whitespace_token1, + anon_sym_RBRACE, + sym_commonmark_name, + [14021] = 4, + ACTIONS(1887), 1, sym__line_ending, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, + ACTIONS(2542), 1, anon_sym_PIPE, - [14042] = 3, - ACTIONS(2381), 1, + STATE(919), 1, + sym__whitespace, + [14034] = 4, + ACTIONS(1887), 1, + sym__line_ending, + ACTIONS(2540), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2428), 1, + ACTIONS(2554), 1, anon_sym_PIPE, - STATE(1087), 1, + STATE(941), 1, sym__whitespace, - [14052] = 3, - ACTIONS(1853), 1, - sym__line_ending, - ACTIONS(2574), 1, - sym__eof, - STATE(217), 1, - sym__newline, - [14062] = 3, - ACTIONS(2576), 1, - sym__line_ending, - ACTIONS(2578), 1, - sym__eof, - STATE(1057), 1, - sym__newline, - [14072] = 3, - ACTIONS(1810), 1, + [14047] = 2, + ACTIONS(2446), 1, + anon_sym_PIPE, + ACTIONS(2471), 3, sym__line_ending, - ACTIONS(2580), 1, sym__eof, - STATE(341), 1, - sym__newline, - [14082] = 3, + sym__pipe_table_line_ending, + [14056] = 4, ACTIONS(2381), 1, - aux_sym__commonmark_whitespace_token1, + anon_sym_DASH, + ACTIONS(2383), 1, + anon_sym_COLON, + STATE(788), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(851), 1, + sym_pipe_table_delimiter_cell, + [14069] = 2, + ACTIONS(2068), 1, + anon_sym_LBRACE, + ACTIONS(2066), 3, + sym_fenced_div_note_id, + anon_sym_LBRACE_RBRACE, + aux_sym_info_string_token1, + [14078] = 2, ACTIONS(2548), 1, anon_sym_PIPE, - STATE(1075), 1, - sym__whitespace, - [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, + ACTIONS(2576), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [14108] = 3, - ACTIONS(1808), 1, + [14087] = 3, + ACTIONS(2578), 1, + sym__line_ending, + ACTIONS(2580), 1, + sym__eof, + STATE(993), 1, + sym__newline, + [14097] = 3, + ACTIONS(1820), 1, sym__line_ending, ACTIONS(2582), 1, sym__eof, - STATE(360), 1, + STATE(454), 1, sym__newline, - [14118] = 3, - ACTIONS(1808), 1, + [14107] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2584), 1, sym__eof, - STATE(361), 1, + STATE(1067), 1, sym__newline, - [14128] = 3, - ACTIONS(1810), 1, + [14117] = 1, + ACTIONS(2066), 3, sym__line_ending, + anon_sym_LBRACE, + aux_sym_info_string_token1, + [14123] = 3, ACTIONS(2586), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2588), 1, + anon_sym_RBRACE, + STATE(1022), 1, + sym__commonmark_whitespace, + [14133] = 3, + ACTIONS(1851), 1, + sym__line_ending, + ACTIONS(2590), 1, sym__eof, - STATE(351), 1, + STATE(359), 1, sym__newline, - [14138] = 3, - ACTIONS(1810), 1, + [14143] = 3, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2440), 1, + anon_sym_PIPE, + STATE(1018), 1, + sym__whitespace, + [14153] = 3, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2588), 1, + ACTIONS(2592), 1, sym__eof, - STATE(353), 1, + STATE(311), 1, sym__newline, - [14148] = 3, - ACTIONS(1853), 1, + [14163] = 3, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2452), 1, + anon_sym_PIPE, + STATE(1034), 1, + sym__whitespace, + [14173] = 1, + ACTIONS(2493), 3, sym__line_ending, - ACTIONS(2590), 1, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14179] = 3, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2554), 1, + anon_sym_PIPE, + STATE(1066), 1, + sym__whitespace, + [14189] = 3, + ACTIONS(1851), 1, + sym__line_ending, + ACTIONS(2594), 1, sym__eof, - STATE(208), 1, + STATE(388), 1, sym__newline, - [14158] = 3, + [14199] = 3, ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2592), 1, + ACTIONS(2596), 1, sym__eof, - STATE(209), 1, + STATE(302), 1, sym__newline, - [14168] = 3, - ACTIONS(2594), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2596), 1, - anon_sym_RBRACE, - STATE(1050), 1, - sym__commonmark_whitespace, - [14178] = 3, - ACTIONS(1810), 1, + [14209] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2598), 1, sym__eof, - STATE(344), 1, + STATE(1049), 1, sym__newline, - [14188] = 3, - ACTIONS(1808), 1, + [14219] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2600), 1, sym__eof, - STATE(389), 1, + STATE(1050), 1, sym__newline, - [14198] = 1, - ACTIONS(2094), 3, - sym__line_ending, - anon_sym_LBRACE, - aux_sym_info_string_token1, - [14204] = 3, - ACTIONS(1808), 1, + [14229] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2602), 1, sym__eof, - STATE(390), 1, + STATE(1053), 1, sym__newline, - [14214] = 3, - ACTIONS(1853), 1, + [14239] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2604), 1, sym__eof, - STATE(261), 1, + STATE(1054), 1, sym__newline, - [14224] = 3, - ACTIONS(1853), 1, - sym__line_ending, + [14249] = 3, ACTIONS(2606), 1, - sym__eof, - STATE(264), 1, - sym__newline, - [14234] = 3, - ACTIONS(1853), 1, sym__line_ending, ACTIONS(2608), 1, sym__eof, - STATE(265), 1, + STATE(1047), 1, sym__newline, - [14244] = 3, - ACTIONS(2566), 1, + [14259] = 3, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2542), 1, + anon_sym_PIPE, + STATE(1079), 1, + sym__whitespace, + [14269] = 3, + ACTIONS(1853), 1, sym__line_ending, ACTIONS(2610), 1, sym__eof, - STATE(1038), 1, + STATE(246), 1, sym__newline, - [14254] = 3, - ACTIONS(2612), 1, + [14279] = 3, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2614), 1, + ACTIONS(2612), 1, sym__eof, - STATE(1059), 1, + STATE(298), 1, sym__newline, - [14264] = 3, - ACTIONS(2566), 1, + [14289] = 3, + ACTIONS(1851), 1, sym__line_ending, - ACTIONS(2616), 1, + ACTIONS(2614), 1, sym__eof, - STATE(1063), 1, + STATE(389), 1, sym__newline, - [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, + [14299] = 3, + ACTIONS(2379), 1, aux_sym__commonmark_whitespace_token1, - ACTIONS(2544), 1, + ACTIONS(2475), 1, anon_sym_PIPE, - STATE(993), 1, + STATE(1035), 1, sym__whitespace, - [14300] = 3, - ACTIONS(2566), 1, + [14309] = 3, + ACTIONS(1820), 1, + sym__line_ending, + ACTIONS(2616), 1, + sym__eof, + STATE(326), 1, + sym__newline, + [14319] = 3, + ACTIONS(1851), 1, sym__line_ending, ACTIONS(2618), 1, sym__eof, - STATE(1023), 1, + STATE(416), 1, sym__newline, - [14310] = 3, - ACTIONS(2566), 1, + [14329] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2620), 1, sym__eof, - STATE(1024), 1, + STATE(1033), 1, sym__newline, - [14320] = 3, - ACTIONS(2566), 1, + [14339] = 1, + ACTIONS(2066), 3, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_PIPE, + [14345] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2622), 1, sym__eof, - STATE(1040), 1, + STATE(1023), 1, sym__newline, - [14330] = 3, - ACTIONS(2566), 1, + [14355] = 3, + ACTIONS(1853), 1, sym__line_ending, ACTIONS(2624), 1, sym__eof, - STATE(1041), 1, + STATE(190), 1, sym__newline, - [14340] = 3, - ACTIONS(2566), 1, + [14365] = 1, + ACTIONS(2529), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [14371] = 3, + ACTIONS(1853), 1, sym__line_ending, ACTIONS(2626), 1, sym__eof, - STATE(1006), 1, + STATE(210), 1, sym__newline, - [14350] = 3, - ACTIONS(2381), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2426), 1, - anon_sym_PIPE, - STATE(1062), 1, - sym__whitespace, - [14360] = 3, - ACTIONS(2536), 1, - aux_sym__commonmark_whitespace_token1, - ACTIONS(2540), 1, - anon_sym_EQ, - STATE(1055), 1, - sym__commonmark_whitespace, - [14370] = 3, + [14381] = 3, + ACTIONS(1853), 1, + sym__line_ending, ACTIONS(2628), 1, - aux_sym__commonmark_whitespace_token1, + sym__eof, + STATE(211), 1, + sym__newline, + [14391] = 3, + ACTIONS(2578), 1, + sym__line_ending, ACTIONS(2630), 1, - anon_sym_RBRACE, - STATE(1046), 1, - sym__commonmark_whitespace, - [14380] = 3, - ACTIONS(1810), 1, + sym__eof, + STATE(1064), 1, + sym__newline, + [14401] = 3, + ACTIONS(1820), 1, sym__line_ending, ACTIONS(2632), 1, sym__eof, - STATE(457), 1, + STATE(351), 1, sym__newline, - [14390] = 3, - ACTIONS(2566), 1, + [14411] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2634), 1, sym__eof, - STATE(997), 1, + STATE(994), 1, sym__newline, - [14400] = 3, - ACTIONS(2566), 1, + [14421] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2636), 1, sym__eof, - STATE(998), 1, + STATE(996), 1, sym__newline, - [14410] = 3, - ACTIONS(1810), 1, + [14431] = 3, + ACTIONS(2578), 1, sym__line_ending, ACTIONS(2638), 1, sym__eof, - STATE(458), 1, + STATE(997), 1, sym__newline, - [14420] = 3, - ACTIONS(2566), 1, - sym__line_ending, + [14441] = 3, ACTIONS(2640), 1, - sym__eof, - STATE(1002), 1, - sym__newline, - [14430] = 2, + aux_sym__commonmark_whitespace_token1, ACTIONS(2642), 1, + anon_sym_RBRACE, + STATE(1055), 1, + sym__commonmark_whitespace, + [14451] = 2, + ACTIONS(2644), 1, sym_key_value_key, - ACTIONS(2509), 2, + ACTIONS(2479), 2, anon_sym_RBRACE, sym_commonmark_name, - [14438] = 3, - ACTIONS(2566), 1, + [14459] = 3, + ACTIONS(2534), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2538), 1, + anon_sym_EQ, + STATE(1068), 1, + sym__commonmark_whitespace, + [14469] = 3, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2644), 1, + ACTIONS(2646), 1, sym__eof, - STATE(1005), 1, + STATE(455), 1, sym__newline, - [14448] = 2, - ACTIONS(1853), 1, + [14479] = 3, + ACTIONS(2379), 1, + aux_sym__commonmark_whitespace_token1, + ACTIONS(2446), 1, + anon_sym_PIPE, + STATE(1014), 1, + sym__whitespace, + [14489] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(304), 1, + STATE(443), 1, sym__newline, - [14455] = 2, - ACTIONS(1808), 1, + [14496] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(395), 1, sym__newline, - [14462] = 2, - ACTIONS(1808), 1, + [14503] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(396), 1, sym__newline, - [14469] = 2, - ACTIONS(1808), 1, + [14510] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(397), 1, sym__newline, - [14476] = 2, - ACTIONS(1808), 1, + [14517] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(398), 1, sym__newline, - [14483] = 2, - ACTIONS(1808), 1, + [14524] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(399), 1, sym__newline, - [14490] = 2, - ACTIONS(1808), 1, + [14531] = 2, + ACTIONS(1851), 1, sym__line_ending, STATE(400), 1, sym__newline, - [14497] = 2, - ACTIONS(2467), 1, - sym__line_ending, - ACTIONS(2646), 1, - anon_sym_PIPE, - [14504] = 2, + [14538] = 2, ACTIONS(1889), 1, sym__block_close, ACTIONS(1891), 1, sym__fenced_code_block_end_backtick, - [14511] = 2, - ACTIONS(1810), 1, - sym__line_ending, - STATE(468), 1, - sym__newline, - [14518] = 2, + [14545] = 2, ACTIONS(1889), 1, sym__block_close, ACTIONS(1891), 1, sym__fenced_code_block_end_tilde, - [14525] = 2, - ACTIONS(1350), 1, - sym__close_block, - ACTIONS(2648), 1, - sym_block_continuation, - [14532] = 2, - ACTIONS(1897), 1, + [14552] = 2, + ACTIONS(1820), 1, + sym__line_ending, + STATE(438), 1, + sym__newline, + [14559] = 2, + ACTIONS(1893), 1, sym__block_close, - ACTIONS(1899), 1, + ACTIONS(1895), 1, sym__fenced_code_block_end_backtick, - [14539] = 2, - ACTIONS(2467), 1, - sym__line_ending, - ACTIONS(2548), 1, - anon_sym_PIPE, - [14546] = 2, - ACTIONS(1897), 1, + [14566] = 2, + ACTIONS(1893), 1, sym__block_close, - ACTIONS(1899), 1, + ACTIONS(1895), 1, sym__fenced_code_block_end_tilde, - [14553] = 2, - ACTIONS(1881), 1, - sym__block_close, - ACTIONS(1883), 1, - sym__fenced_code_block_end_backtick, - [14560] = 2, - ACTIONS(1861), 1, + [14573] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(516), 1, + STATE(461), 1, sym__newline, - [14567] = 2, - ACTIONS(2650), 1, + [14580] = 2, + ACTIONS(2648), 1, sym__block_close, - ACTIONS(2652), 1, - sym__fenced_code_block_end_backtick, - [14574] = 2, ACTIONS(2650), 1, + sym__fenced_code_block_end_backtick, + [14587] = 2, + ACTIONS(2648), 1, sym__block_close, - ACTIONS(2652), 1, - sym__fenced_code_block_end_tilde, - [14581] = 1, - ACTIONS(2499), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [14586] = 2, - ACTIONS(1881), 1, - sym__block_close, - ACTIONS(1883), 1, + ACTIONS(2650), 1, sym__fenced_code_block_end_tilde, - [14593] = 2, - ACTIONS(1877), 1, + [14594] = 1, + ACTIONS(2652), 2, sym__line_ending, - STATE(517), 1, + anon_sym_LBRACE, + [14599] = 1, + ACTIONS(2654), 2, + sym__line_ending, + anon_sym_LBRACE, + [14604] = 2, + ACTIONS(1820), 1, + sym__line_ending, + STATE(445), 1, sym__newline, - [14600] = 2, - ACTIONS(1350), 1, - sym__block_close, - ACTIONS(2654), 1, - sym_block_continuation, - [14607] = 2, - ACTIONS(1788), 1, + [14611] = 2, + ACTIONS(1887), 1, sym__line_ending, - ACTIONS(2548), 1, + ACTIONS(2542), 1, anon_sym_PIPE, - [14614] = 2, - ACTIONS(1879), 1, + [14618] = 2, + ACTIONS(1820), 1, sym__line_ending, - ACTIONS(2548), 1, - anon_sym_PIPE, - [14621] = 1, - ACTIONS(2481), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [14626] = 2, - ACTIONS(1810), 1, + STATE(462), 1, + sym__newline, + [14625] = 2, + ACTIONS(1820), 1, + sym__line_ending, + STATE(463), 1, + sym__newline, + [14632] = 2, + ACTIONS(2656), 1, + anon_sym_DASH, + STATE(715), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [14639] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(451), 1, + STATE(464), 1, sym__newline, - [14633] = 2, - ACTIONS(2656), 1, - sym__block_close, - ACTIONS(2658), 1, - sym__fenced_code_block_end_backtick, - [14640] = 1, - ACTIONS(2094), 2, - sym__line_ending, - anon_sym_PIPE, - [14645] = 2, - ACTIONS(1810), 1, + [14646] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(453), 1, + STATE(447), 1, sym__newline, - [14652] = 2, + [14653] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(288), 1, + STATE(264), 1, sym__newline, - [14659] = 2, - ACTIONS(1869), 1, - sym__block_close, - ACTIONS(1871), 1, - sym__fenced_code_block_end_backtick, - [14666] = 2, + [14660] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(290), 1, + STATE(268), 1, sym__newline, - [14673] = 2, + [14667] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(297), 1, + STATE(273), 1, sym__newline, - [14680] = 1, - ACTIONS(2483), 2, - aux_sym__commonmark_whitespace_token1, - anon_sym_PIPE, - [14685] = 2, - ACTIONS(1853), 1, + [14674] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(300), 1, + STATE(449), 1, sym__newline, - [14692] = 2, + [14681] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(302), 1, + STATE(275), 1, sym__newline, - [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, + [14688] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(449), 1, + STATE(465), 1, sym__newline, - [14720] = 2, - ACTIONS(1798), 1, + [14695] = 2, + ACTIONS(1853), 1, sym__line_ending, - ACTIONS(2548), 1, - anon_sym_PIPE, - [14727] = 2, - ACTIONS(1810), 1, + STATE(289), 1, + sym__newline, + [14702] = 2, + ACTIONS(2658), 1, sym__line_ending, - STATE(462), 1, + STATE(703), 1, sym__newline, - [14734] = 2, + [14709] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(7), 1, + STATE(299), 1, sym__newline, - [14741] = 2, - ACTIONS(1853), 1, + [14716] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(219), 1, + STATE(1078), 1, sym__newline, - [14748] = 2, - ACTIONS(1853), 1, + [14723] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(220), 1, + STATE(466), 1, sym__newline, - [14755] = 2, - ACTIONS(1853), 1, + [14730] = 2, + ACTIONS(1873), 1, + sym__block_close, + ACTIONS(1875), 1, + sym__fenced_code_block_end_backtick, + [14737] = 2, + ACTIONS(1867), 1, sym__line_ending, - STATE(221), 1, + STATE(512), 1, sym__newline, - [14762] = 2, + [14744] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(222), 1, sym__newline, - [14769] = 2, + [14751] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(223), 1, sym__newline, - [14776] = 2, + [14758] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(224), 1, sym__newline, - [14783] = 2, + [14765] = 2, ACTIONS(1853), 1, sym__line_ending, - STATE(8), 1, + STATE(225), 1, + sym__newline, + [14772] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(226), 1, + sym__newline, + [14779] = 2, + ACTIONS(1853), 1, + sym__line_ending, + STATE(227), 1, + sym__newline, + [14786] = 2, + ACTIONS(1901), 1, + sym__block_close, + ACTIONS(1903), 1, + sym__fenced_code_block_end_backtick, + [14793] = 2, + ACTIONS(1873), 1, + sym__block_close, + ACTIONS(1875), 1, + sym__fenced_code_block_end_tilde, + [14800] = 2, + ACTIONS(1901), 1, + sym__block_close, + ACTIONS(1903), 1, + sym__fenced_code_block_end_tilde, + [14807] = 2, + ACTIONS(1881), 1, + sym__line_ending, + STATE(515), 1, sym__newline, - [14790] = 2, + [14814] = 2, ACTIONS(1905), 1, sym__block_close, ACTIONS(1907), 1, sym__fenced_code_block_end_backtick, - [14797] = 2, - ACTIONS(1861), 1, + [14821] = 2, + ACTIONS(2471), 1, sym__line_ending, - STATE(522), 1, - sym__newline, - [14804] = 2, + ACTIONS(2660), 1, + anon_sym_PIPE, + [14828] = 2, ACTIONS(1905), 1, sym__block_close, ACTIONS(1907), 1, sym__fenced_code_block_end_tilde, - [14811] = 2, + [14835] = 2, + ACTIONS(1768), 1, + sym__line_ending, + ACTIONS(2542), 1, + anon_sym_PIPE, + [14842] = 2, + ACTIONS(2578), 1, + sym__line_ending, + STATE(1042), 1, + sym__newline, + [14849] = 2, ACTIONS(2662), 1, - aux_sym__commonmark_whitespace_token1, - STATE(599), 1, - sym__whitespace, - [14818] = 1, - ACTIONS(2664), 2, + sym__block_close, + ACTIONS(2664), 1, + sym__fenced_code_block_end_backtick, + [14856] = 2, + ACTIONS(2662), 1, + sym__block_close, + ACTIONS(2664), 1, + sym__fenced_code_block_end_tilde, + [14863] = 2, + ACTIONS(1867), 1, sym__line_ending, - anon_sym_LBRACE, - [14823] = 2, - ACTIONS(1909), 1, + STATE(514), 1, + sym__newline, + [14870] = 2, + ACTIONS(1869), 1, sym__block_close, - ACTIONS(1911), 1, + ACTIONS(1871), 1, sym__fenced_code_block_end_backtick, - [14830] = 2, + [14877] = 2, ACTIONS(2666), 1, aux_sym__commonmark_whitespace_token1, - STATE(718), 1, + STATE(710), 1, sym__whitespace, - [14837] = 2, - ACTIONS(1877), 1, - sym__line_ending, - STATE(529), 1, - sym__newline, - [14844] = 2, - ACTIONS(2566), 1, + [14884] = 2, + ACTIONS(1382), 1, + sym__close_block, + ACTIONS(2668), 1, + sym_block_continuation, + [14891] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(1058), 1, + STATE(1007), 1, sym__newline, - [14851] = 2, - ACTIONS(2668), 1, - sym__block_close, - ACTIONS(2670), 1, - sym__fenced_code_block_end_backtick, - [14858] = 2, - ACTIONS(2668), 1, + [14898] = 2, + ACTIONS(1382), 1, sym__block_close, ACTIONS(2670), 1, - sym__fenced_code_block_end_tilde, - [14865] = 2, - ACTIONS(1879), 1, + sym_block_continuation, + [14905] = 2, + ACTIONS(2672), 1, + aux_sym__commonmark_whitespace_token1, + STATE(587), 1, + sym__whitespace, + [14912] = 2, + ACTIONS(2666), 1, + aux_sym__commonmark_whitespace_token1, + STATE(707), 1, + sym__whitespace, + [14919] = 2, + ACTIONS(2578), 1, sym__line_ending, - ACTIONS(2646), 1, - anon_sym_PIPE, - [14872] = 2, - ACTIONS(1788), 1, + STATE(1092), 1, + sym__newline, + [14926] = 2, + ACTIONS(1768), 1, sym__line_ending, - ACTIONS(2646), 1, + ACTIONS(2660), 1, anon_sym_PIPE, - [14879] = 2, - ACTIONS(2672), 1, + [14933] = 2, + ACTIONS(2674), 1, anon_sym_DASH, - STATE(789), 1, + STATE(775), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - [14886] = 2, - ACTIONS(1810), 1, - sym__line_ending, - STATE(463), 1, - sym__newline, - [14893] = 2, - ACTIONS(2612), 1, + [14940] = 2, + ACTIONS(1881), 1, sym__line_ending, - STATE(716), 1, + STATE(522), 1, sym__newline, - [14900] = 2, - ACTIONS(1808), 1, + [14947] = 1, + ACTIONS(2066), 2, sym__line_ending, - STATE(372), 1, - sym__newline, - [14907] = 2, - ACTIONS(1808), 1, + anon_sym_PIPE, + [14952] = 2, + ACTIONS(1867), 1, sym__line_ending, - STATE(374), 1, + STATE(533), 1, sym__newline, - [14914] = 2, - ACTIONS(2662), 1, + [14959] = 2, + ACTIONS(2672), 1, aux_sym__commonmark_whitespace_token1, - STATE(604), 1, + STATE(591), 1, sym__whitespace, - [14921] = 2, - ACTIONS(1810), 1, - sym__line_ending, - STATE(464), 1, - sym__newline, - [14928] = 2, - ACTIONS(1808), 1, - sym__line_ending, - STATE(376), 1, - sym__newline, - [14935] = 2, - ACTIONS(1861), 1, - sym__line_ending, - STATE(525), 1, - sym__newline, - [14942] = 2, - ACTIONS(1877), 1, - sym__line_ending, - STATE(539), 1, - sym__newline, - [14949] = 2, - ACTIONS(2566), 1, + [14966] = 2, + ACTIONS(1881), 1, sym__line_ending, - STATE(1097), 1, + STATE(519), 1, sym__newline, - [14956] = 1, - ACTIONS(2674), 2, + [14973] = 2, + ACTIONS(2471), 1, sym__line_ending, - anon_sym_LBRACE, - [14961] = 2, - ACTIONS(1810), 1, + ACTIONS(2542), 1, + anon_sym_PIPE, + [14980] = 1, + ACTIONS(2491), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [14985] = 2, + ACTIONS(1798), 1, sym__line_ending, - STATE(442), 1, - sym__newline, - [14968] = 2, - ACTIONS(2676), 1, - sym__block_close, - ACTIONS(2678), 1, - sym_block_continuation, - [14975] = 2, - ACTIONS(1861), 1, + ACTIONS(2542), 1, + anon_sym_PIPE, + [14992] = 2, + ACTIONS(1867), 1, sym__line_ending, - STATE(527), 1, + STATE(520), 1, sym__newline, - [14982] = 2, - ACTIONS(1877), 1, + [14999] = 2, + ACTIONS(1881), 1, sym__line_ending, - STATE(528), 1, + STATE(521), 1, sym__newline, - [14989] = 2, + [15006] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(13), 1, sym__newline, - [14996] = 2, + [15013] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(14), 1, sym__newline, - [15003] = 2, - ACTIONS(2566), 1, + [15020] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(990), 1, + STATE(1015), 1, sym__newline, - [15010] = 2, - ACTIONS(2566), 1, + [15027] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(1011), 1, + STATE(1046), 1, sym__newline, - [15017] = 2, - ACTIONS(2566), 1, + [15034] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(1017), 1, + STATE(1048), 1, sym__newline, - [15024] = 2, - ACTIONS(1808), 1, + [15041] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(378), 1, + STATE(7), 1, sym__newline, - [15031] = 2, - ACTIONS(2566), 1, + [15048] = 2, + ACTIONS(1853), 1, sym__line_ending, - STATE(1029), 1, + STATE(8), 1, sym__newline, - [15038] = 2, - ACTIONS(1808), 1, + [15055] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(380), 1, + STATE(1052), 1, sym__newline, - [15045] = 2, - ACTIONS(1810), 1, + [15062] = 2, + ACTIONS(2672), 1, + aux_sym__commonmark_whitespace_token1, + STATE(590), 1, + sym__whitespace, + [15069] = 2, + ACTIONS(1869), 1, + sym__block_close, + ACTIONS(1871), 1, + sym__fenced_code_block_end_tilde, + [15076] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(465), 1, + STATE(370), 1, sym__newline, - [15052] = 2, - ACTIONS(2566), 1, + [15083] = 2, + ACTIONS(1820), 1, sym__line_ending, - STATE(1000), 1, + STATE(440), 1, sym__newline, - [15059] = 2, - ACTIONS(2662), 1, - aux_sym__commonmark_whitespace_token1, - STATE(600), 1, - sym__whitespace, - [15066] = 2, - ACTIONS(1810), 1, + [15090] = 2, + ACTIONS(1867), 1, sym__line_ending, - STATE(444), 1, + STATE(526), 1, sym__newline, - [15073] = 2, - ACTIONS(1808), 1, + [15097] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(382), 1, + STATE(372), 1, sym__newline, - [15080] = 2, - ACTIONS(1861), 1, + [15104] = 2, + ACTIONS(1881), 1, sym__line_ending, - STATE(533), 1, + STATE(527), 1, sym__newline, - [15087] = 2, - ACTIONS(1877), 1, + [15111] = 2, + ACTIONS(2676), 1, + sym__block_close, + ACTIONS(2678), 1, + sym_block_continuation, + [15118] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(534), 1, + STATE(374), 1, sym__newline, - [15094] = 2, - ACTIONS(1810), 1, + [15125] = 2, + ACTIONS(2680), 1, + sym__block_close, + ACTIONS(2682), 1, + sym__fenced_code_block_end_backtick, + [15132] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(447), 1, + STATE(376), 1, sym__newline, - [15101] = 2, - ACTIONS(1861), 1, + [15139] = 1, + ACTIONS(2522), 2, + aux_sym__commonmark_whitespace_token1, + anon_sym_PIPE, + [15144] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(535), 1, + STATE(378), 1, sym__newline, - [15108] = 2, - ACTIONS(1877), 1, + [15151] = 2, + ACTIONS(1867), 1, sym__line_ending, - STATE(536), 1, + STATE(528), 1, + sym__newline, + [15158] = 2, + ACTIONS(1881), 1, + sym__line_ending, + STATE(529), 1, sym__newline, - [15115] = 2, + [15165] = 2, + ACTIONS(2680), 1, + sym__block_close, + ACTIONS(2682), 1, + sym__fenced_code_block_end_tilde, + [15172] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(19), 1, sym__newline, - [15122] = 2, + [15179] = 2, ACTIONS(1853), 1, sym__line_ending, STATE(20), 1, sym__newline, - [15129] = 2, - ACTIONS(2566), 1, + [15186] = 2, + ACTIONS(1851), 1, sym__line_ending, - STATE(1100), 1, + STATE(380), 1, sym__newline, - [15136] = 2, - ACTIONS(2566), 1, + [15193] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(994), 1, + STATE(985), 1, sym__newline, - [15143] = 2, - ACTIONS(2566), 1, + [15200] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(995), 1, + STATE(991), 1, sym__newline, - [15150] = 2, - ACTIONS(1810), 1, + [15207] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(467), 1, + STATE(992), 1, sym__newline, - [15157] = 2, - ACTIONS(2566), 1, + [15214] = 2, + ACTIONS(1887), 1, sym__line_ending, - STATE(999), 1, - sym__newline, - [15164] = 2, - ACTIONS(2666), 1, - aux_sym__commonmark_whitespace_token1, - STATE(707), 1, - sym__whitespace, - [15171] = 2, - ACTIONS(1869), 1, - sym__block_close, - ACTIONS(1871), 1, - sym__fenced_code_block_end_tilde, - [15178] = 2, - ACTIONS(2612), 1, + ACTIONS(2660), 1, + anon_sym_PIPE, + [15221] = 2, + ACTIONS(2578), 1, sym__line_ending, - STATE(712), 1, + STATE(995), 1, sym__newline, - [15185] = 2, - ACTIONS(2560), 1, + [15228] = 2, + ACTIONS(2658), 1, sym__line_ending, - ACTIONS(2646), 1, + STATE(709), 1, + sym__newline, + [15235] = 1, + ACTIONS(2493), 2, + aux_sym__commonmark_whitespace_token1, anon_sym_PIPE, - [15192] = 2, - ACTIONS(2612), 1, + [15240] = 2, + ACTIONS(2658), 1, sym__line_ending, - STATE(715), 1, + STATE(713), 1, sym__newline, - [15199] = 2, + [15247] = 2, ACTIONS(2666), 1, aux_sym__commonmark_whitespace_token1, - STATE(717), 1, + STATE(714), 1, sym__whitespace, - [15206] = 2, - ACTIONS(2566), 1, + [15254] = 2, + ACTIONS(2576), 1, sym__line_ending, - STATE(1027), 1, - sym__newline, - [15213] = 2, - ACTIONS(1909), 1, - sym__block_close, - ACTIONS(1911), 1, - sym__fenced_code_block_end_tilde, - [15220] = 1, - ACTIONS(2680), 1, + ACTIONS(2660), 1, + anon_sym_PIPE, + [15261] = 1, + ACTIONS(1426), 1, sym__close_block, - [15224] = 1, - ACTIONS(2682), 1, - anon_sym_COLON, - [15228] = 1, - ACTIONS(2650), 1, - sym__block_close, - [15232] = 1, + [15265] = 1, ACTIONS(2684), 1, + sym__line_ending, + [15269] = 1, + ACTIONS(2662), 1, sym__block_close, - [15236] = 1, + [15273] = 1, ACTIONS(2686), 1, - sym__block_close, - [15240] = 1, - ACTIONS(2548), 1, - anon_sym_PIPE, - [15244] = 1, + sym__close_block, + [15277] = 1, ACTIONS(2688), 1, - sym__block_close, - [15248] = 1, + sym__line_ending, + [15281] = 1, ACTIONS(2690), 1, - sym__block_close, - [15252] = 1, + sym__line_ending, + [15285] = 1, ACTIONS(2692), 1, - sym__block_close, - [15256] = 1, + sym__close_block, + [15289] = 1, ACTIONS(2694), 1, sym__block_close, - [15260] = 1, + [15293] = 1, ACTIONS(2696), 1, sym__block_close, - [15264] = 1, + [15297] = 1, ACTIONS(2698), 1, sym__block_close, - [15268] = 1, + [15301] = 1, ACTIONS(2700), 1, sym__block_close, - [15272] = 1, + [15305] = 1, ACTIONS(2702), 1, sym__block_close, - [15276] = 1, + [15309] = 1, ACTIONS(2704), 1, sym__block_close, - [15280] = 1, + [15313] = 1, ACTIONS(2706), 1, sym__block_close, - [15284] = 1, + [15317] = 1, ACTIONS(2708), 1, sym__block_close, - [15288] = 1, + [15321] = 1, ACTIONS(2710), 1, - sym__block_close, - [15292] = 1, + sym__line_ending, + [15325] = 1, ACTIONS(2712), 1, sym__block_close, - [15296] = 1, + [15329] = 1, ACTIONS(2714), 1, - sym__close_block, - [15300] = 1, + sym__line_ending, + [15333] = 1, ACTIONS(2716), 1, - ts_builtin_sym_end, - [15304] = 1, + sym__block_close, + [15337] = 1, ACTIONS(2718), 1, - sym__line_ending, - [15308] = 1, + sym__block_close, + [15341] = 1, + ACTIONS(1426), 1, + sym__block_close, + [15345] = 1, ACTIONS(2720), 1, - sym__close_block, - [15312] = 1, - ACTIONS(2722), 1, sym__block_close, - [15316] = 1, + [15349] = 1, + ACTIONS(2722), 1, + sym__close_block, + [15353] = 1, ACTIONS(2724), 1, sym__block_close, - [15320] = 1, + [15357] = 1, ACTIONS(2726), 1, - sym__close_block, - [15324] = 1, + sym__block_close, + [15361] = 1, ACTIONS(2728), 1, - sym__close_block, - [15328] = 1, - ACTIONS(2730), 1, sym__line_ending, - [15332] = 1, + [15365] = 1, + ACTIONS(2730), 1, + sym__block_close, + [15369] = 1, ACTIONS(2732), 1, sym__block_close, - [15336] = 1, + [15373] = 1, ACTIONS(2734), 1, - sym__block_close, - [15340] = 1, + sym__close_block, + [15377] = 1, ACTIONS(2736), 1, sym__block_close, - [15344] = 1, + [15381] = 1, ACTIONS(2738), 1, sym__block_close, - [15348] = 1, + [15385] = 1, + ACTIONS(2548), 1, + anon_sym_PIPE, + [15389] = 1, + ACTIONS(2648), 1, + sym__block_close, + [15393] = 1, ACTIONS(2740), 1, - sym__close_block, - [15352] = 1, - ACTIONS(2742), 1, sym__line_ending, - [15356] = 1, - ACTIONS(2744), 1, + [15397] = 1, + ACTIONS(2742), 1, sym__block_close, - [15360] = 1, + [15401] = 1, + ACTIONS(2475), 1, + anon_sym_PIPE, + [15405] = 1, + ACTIONS(2744), 1, + sym__close_block, + [15409] = 1, ACTIONS(2746), 1, sym__block_close, - [15364] = 1, + [15413] = 1, ACTIONS(2748), 1, - sym__block_close, - [15368] = 1, + sym__close_block, + [15417] = 1, ACTIONS(2750), 1, - sym__line_ending, - [15372] = 1, + anon_sym_RBRACE, + [15421] = 1, ACTIONS(2752), 1, sym__block_close, - [15376] = 1, + [15425] = 1, ACTIONS(2754), 1, sym__block_close, - [15380] = 1, - ACTIONS(2426), 1, - anon_sym_PIPE, - [15384] = 1, + [15429] = 1, ACTIONS(2756), 1, sym__block_close, - [15388] = 1, + [15433] = 1, ACTIONS(2758), 1, - sym__line_ending, - [15392] = 1, - ACTIONS(2760), 1, sym__block_close, - [15396] = 1, + [15437] = 1, + ACTIONS(2760), 1, + sym__close_block, + [15441] = 1, ACTIONS(2762), 1, sym__block_close, - [15400] = 1, + [15445] = 1, ACTIONS(2764), 1, sym__block_close, - [15404] = 1, + [15449] = 1, ACTIONS(2766), 1, sym__block_close, - [15408] = 1, + [15453] = 1, ACTIONS(2768), 1, sym__block_close, - [15412] = 1, + [15457] = 1, ACTIONS(2770), 1, - anon_sym_COLON, - [15416] = 1, + sym__block_close, + [15461] = 1, ACTIONS(2772), 1, sym__block_close, - [15420] = 1, + [15465] = 1, + ACTIONS(2446), 1, + anon_sym_PIPE, + [15469] = 1, + ACTIONS(2544), 1, + anon_sym_PIPE, + [15473] = 1, ACTIONS(2774), 1, - sym__block_close, - [15424] = 1, + ts_builtin_sym_end, + [15477] = 1, ACTIONS(2776), 1, sym__block_close, - [15428] = 1, + [15481] = 1, ACTIONS(2778), 1, sym__block_close, - [15432] = 1, + [15485] = 1, ACTIONS(2780), 1, sym__block_close, - [15436] = 1, + [15489] = 1, ACTIONS(2782), 1, - sym__block_close, - [15440] = 1, - ACTIONS(1424), 1, - sym__block_close, - [15444] = 1, + sym__line_ending, + [15493] = 1, ACTIONS(2784), 1, sym__block_close, - [15448] = 1, + [15497] = 1, ACTIONS(2786), 1, - sym__close_block, - [15452] = 1, + sym__block_close, + [15501] = 1, ACTIONS(2788), 1, - anon_sym_RBRACE, - [15456] = 1, + sym__block_close, + [15505] = 1, ACTIONS(2790), 1, sym__block_close, - [15460] = 1, + [15509] = 1, ACTIONS(2792), 1, - sym__block_close, - [15464] = 1, - ACTIONS(2794), 1, sym__line_ending, - [15468] = 1, - ACTIONS(2630), 1, - anon_sym_RBRACE, - [15472] = 1, + [15513] = 1, + ACTIONS(2794), 1, + sym__block_close, + [15517] = 1, + ACTIONS(1494), 1, + sym__close_block, + [15521] = 1, ACTIONS(2796), 1, - sym__line_ending, - [15476] = 1, + sym__block_close, + [15525] = 1, ACTIONS(2798), 1, sym__block_close, - [15480] = 1, + [15529] = 1, ACTIONS(2800), 1, - sym__line_ending, - [15484] = 1, + sym__block_close, + [15533] = 1, ACTIONS(2802), 1, sym__close_block, - [15488] = 1, + [15537] = 1, ACTIONS(2804), 1, - anon_sym_EQ, - [15492] = 1, - ACTIONS(2806), 1, sym__block_close, - [15496] = 1, - ACTIONS(1624), 1, - sym__close_block, - [15500] = 1, - ACTIONS(2656), 1, + [15541] = 1, + ACTIONS(2806), 1, sym__block_close, - [15504] = 1, - ACTIONS(1624), 1, - anon_sym_COLON, - [15508] = 1, + [15545] = 1, ACTIONS(2808), 1, - sym__line_ending, - [15512] = 1, - ACTIONS(2810), 1, sym__block_close, - [15516] = 1, - ACTIONS(2530), 1, - anon_sym_PIPE, - [15520] = 1, + [15549] = 1, + ACTIONS(2588), 1, + anon_sym_RBRACE, + [15553] = 1, + ACTIONS(2810), 1, + sym__line_ending, + [15557] = 1, ACTIONS(2812), 1, sym__block_close, - [15524] = 1, + [15561] = 1, ACTIONS(2814), 1, - sym__line_ending, - [15528] = 1, + sym__block_close, + [15565] = 1, ACTIONS(2816), 1, - sym__close_block, - [15532] = 1, + sym__block_close, + [15569] = 1, ACTIONS(2818), 1, sym__block_close, - [15536] = 1, + [15573] = 1, ACTIONS(2820), 1, sym__block_close, - [15540] = 1, + [15577] = 1, ACTIONS(2822), 1, sym__block_close, - [15544] = 1, + [15581] = 1, ACTIONS(2824), 1, - sym__block_close, - [15548] = 1, + sym__line_ending, + [15585] = 1, ACTIONS(2826), 1, - anon_sym_COLON, - [15552] = 1, + sym__block_close, + [15589] = 1, ACTIONS(2828), 1, sym__block_close, - [15556] = 1, + [15593] = 1, + ACTIONS(2542), 1, + anon_sym_PIPE, + [15597] = 1, ACTIONS(2830), 1, sym__block_close, - [15560] = 1, + [15601] = 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, + anon_sym_EQ, + [15605] = 1, ACTIONS(2834), 1, sym__block_close, - [15576] = 1, - ACTIONS(2428), 1, - anon_sym_PIPE, - [15580] = 1, + [15609] = 1, ACTIONS(2836), 1, - sym__block_close, - [15584] = 1, + sym__close_block, + [15613] = 1, ACTIONS(2838), 1, sym__close_block, - [15588] = 1, + [15617] = 1, ACTIONS(2840), 1, sym__close_block, - [15592] = 1, + [15621] = 1, ACTIONS(2842), 1, sym__close_block, - [15596] = 1, + [15625] = 1, ACTIONS(2844), 1, sym__close_block, - [15600] = 1, + [15629] = 1, ACTIONS(2846), 1, sym__close_block, - [15604] = 1, + [15633] = 1, ACTIONS(2848), 1, - sym__block_close, - [15608] = 1, + sym__close_block, + [15637] = 1, ACTIONS(2850), 1, sym__close_block, - [15612] = 1, + [15641] = 1, ACTIONS(2852), 1, - sym__close_block, - [15616] = 1, - ACTIONS(2546), 1, + sym__block_close, + [15645] = 1, + ACTIONS(2660), 1, anon_sym_PIPE, - [15620] = 1, + [15649] = 1, ACTIONS(2854), 1, - sym__block_close, - [15624] = 1, + sym__close_block, + [15653] = 1, ACTIONS(2856), 1, sym__close_block, - [15628] = 1, + [15657] = 1, ACTIONS(2858), 1, sym__close_block, - [15632] = 1, + [15661] = 1, ACTIONS(2860), 1, sym__close_block, - [15636] = 1, + [15665] = 1, ACTIONS(2862), 1, sym__close_block, - [15640] = 1, + [15669] = 1, ACTIONS(2864), 1, sym__close_block, - [15644] = 1, + [15673] = 1, ACTIONS(2866), 1, sym__close_block, - [15648] = 1, + [15677] = 1, ACTIONS(2868), 1, sym__close_block, - [15652] = 1, + [15681] = 1, ACTIONS(2870), 1, - sym__close_block, - [15656] = 1, + sym__block_close, + [15685] = 1, ACTIONS(2872), 1, sym__block_close, - [15660] = 1, + [15689] = 1, ACTIONS(2874), 1, - sym__block_close, - [15664] = 1, - ACTIONS(2876), 1, sym__close_block, - [15668] = 1, - ACTIONS(2668), 1, + [15693] = 1, + ACTIONS(2876), 1, + sym__block_close, + [15697] = 1, + ACTIONS(2680), 1, sym__block_close, - [15672] = 1, - ACTIONS(2878), 1, - sym__line_ending, }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [SMALL_STATE(473)] = 0, + [SMALL_STATE(474)] = 78, + [SMALL_STATE(475)] = 157, + [SMALL_STATE(476)] = 229, + [SMALL_STATE(477)] = 293, + [SMALL_STATE(478)] = 365, + [SMALL_STATE(479)] = 437, + [SMALL_STATE(480)] = 509, + [SMALL_STATE(481)] = 581, + [SMALL_STATE(482)] = 654, + [SMALL_STATE(483)] = 727, + [SMALL_STATE(484)] = 796, + [SMALL_STATE(485)] = 865, + [SMALL_STATE(486)] = 934, + [SMALL_STATE(487)] = 1007, + [SMALL_STATE(488)] = 1068, + [SMALL_STATE(489)] = 1137, + [SMALL_STATE(490)] = 1198, + [SMALL_STATE(491)] = 1259, + [SMALL_STATE(492)] = 1320, + [SMALL_STATE(493)] = 1381, + [SMALL_STATE(494)] = 1450, + [SMALL_STATE(495)] = 1519, + [SMALL_STATE(496)] = 1588, + [SMALL_STATE(497)] = 1657, + [SMALL_STATE(498)] = 1726, + [SMALL_STATE(499)] = 1795, + [SMALL_STATE(500)] = 1864, + [SMALL_STATE(501)] = 1933, + [SMALL_STATE(502)] = 2002, + [SMALL_STATE(503)] = 2071, + [SMALL_STATE(504)] = 2140, + [SMALL_STATE(505)] = 2209, + [SMALL_STATE(506)] = 2278, + [SMALL_STATE(507)] = 2347, + [SMALL_STATE(508)] = 2417, + [SMALL_STATE(509)] = 2487, + [SMALL_STATE(510)] = 2553, + [SMALL_STATE(511)] = 2619, + [SMALL_STATE(512)] = 2681, + [SMALL_STATE(513)] = 2743, + [SMALL_STATE(514)] = 2813, + [SMALL_STATE(515)] = 2875, + [SMALL_STATE(516)] = 2937, + [SMALL_STATE(517)] = 2999, + [SMALL_STATE(518)] = 3061, + [SMALL_STATE(519)] = 3127, + [SMALL_STATE(520)] = 3189, + [SMALL_STATE(521)] = 3251, + [SMALL_STATE(522)] = 3313, + [SMALL_STATE(523)] = 3375, + [SMALL_STATE(524)] = 3445, + [SMALL_STATE(525)] = 3507, + [SMALL_STATE(526)] = 3569, + [SMALL_STATE(527)] = 3631, + [SMALL_STATE(528)] = 3693, + [SMALL_STATE(529)] = 3755, + [SMALL_STATE(530)] = 3817, + [SMALL_STATE(531)] = 3887, + [SMALL_STATE(532)] = 3949, + [SMALL_STATE(533)] = 4011, + [SMALL_STATE(534)] = 4073, + [SMALL_STATE(535)] = 4140, + [SMALL_STATE(536)] = 4199, + [SMALL_STATE(537)] = 4256, + [SMALL_STATE(538)] = 4313, + [SMALL_STATE(539)] = 4370, + [SMALL_STATE(540)] = 4429, + [SMALL_STATE(541)] = 4496, + [SMALL_STATE(542)] = 4557, + [SMALL_STATE(543)] = 4616, + [SMALL_STATE(544)] = 4675, + [SMALL_STATE(545)] = 4734, + [SMALL_STATE(546)] = 4791, + [SMALL_STATE(547)] = 4849, + [SMALL_STATE(548)] = 4913, + [SMALL_STATE(549)] = 4963, + [SMALL_STATE(550)] = 5027, + [SMALL_STATE(551)] = 5085, + [SMALL_STATE(552)] = 5141, + [SMALL_STATE(553)] = 5199, + [SMALL_STATE(554)] = 5263, + [SMALL_STATE(555)] = 5319, + [SMALL_STATE(556)] = 5375, + [SMALL_STATE(557)] = 5439, + [SMALL_STATE(558)] = 5495, + [SMALL_STATE(559)] = 5551, + [SMALL_STATE(560)] = 5607, + [SMALL_STATE(561)] = 5671, + [SMALL_STATE(562)] = 5735, + [SMALL_STATE(563)] = 5793, + [SMALL_STATE(564)] = 5849, + [SMALL_STATE(565)] = 5907, + [SMALL_STATE(566)] = 5971, + [SMALL_STATE(567)] = 6035, + [SMALL_STATE(568)] = 6099, + [SMALL_STATE(569)] = 6160, + [SMALL_STATE(570)] = 6221, + [SMALL_STATE(571)] = 6282, + [SMALL_STATE(572)] = 6341, + [SMALL_STATE(573)] = 6388, + [SMALL_STATE(574)] = 6449, + [SMALL_STATE(575)] = 6502, + [SMALL_STATE(576)] = 6549, + [SMALL_STATE(577)] = 6596, + [SMALL_STATE(578)] = 6643, + [SMALL_STATE(579)] = 6690, + [SMALL_STATE(580)] = 6737, + [SMALL_STATE(581)] = 6798, + [SMALL_STATE(582)] = 6845, + [SMALL_STATE(583)] = 6906, + [SMALL_STATE(584)] = 6967, + [SMALL_STATE(585)] = 7028, + [SMALL_STATE(586)] = 7078, + [SMALL_STATE(587)] = 7128, + [SMALL_STATE(588)] = 7186, + [SMALL_STATE(589)] = 7236, + [SMALL_STATE(590)] = 7282, + [SMALL_STATE(591)] = 7340, + [SMALL_STATE(592)] = 7398, + [SMALL_STATE(593)] = 7448, + [SMALL_STATE(594)] = 7498, + [SMALL_STATE(595)] = 7544, + [SMALL_STATE(596)] = 7594, + [SMALL_STATE(597)] = 7644, + [SMALL_STATE(598)] = 7694, + [SMALL_STATE(599)] = 7740, + [SMALL_STATE(600)] = 7786, + [SMALL_STATE(601)] = 7838, + [SMALL_STATE(602)] = 7888, + [SMALL_STATE(603)] = 7939, + [SMALL_STATE(604)] = 7988, + [SMALL_STATE(605)] = 8033, + [SMALL_STATE(606)] = 8082, + [SMALL_STATE(607)] = 8127, + [SMALL_STATE(608)] = 8172, + [SMALL_STATE(609)] = 8221, + [SMALL_STATE(610)] = 8270, + [SMALL_STATE(611)] = 8315, + [SMALL_STATE(612)] = 8360, + [SMALL_STATE(613)] = 8409, + [SMALL_STATE(614)] = 8458, + [SMALL_STATE(615)] = 8503, + [SMALL_STATE(616)] = 8548, + [SMALL_STATE(617)] = 8593, + [SMALL_STATE(618)] = 8642, + [SMALL_STATE(619)] = 8686, + [SMALL_STATE(620)] = 8728, + [SMALL_STATE(621)] = 8772, + [SMALL_STATE(622)] = 8816, + [SMALL_STATE(623)] = 8860, + [SMALL_STATE(624)] = 8910, + [SMALL_STATE(625)] = 8960, + [SMALL_STATE(626)] = 9010, + [SMALL_STATE(627)] = 9054, + [SMALL_STATE(628)] = 9098, + [SMALL_STATE(629)] = 9140, + [SMALL_STATE(630)] = 9184, + [SMALL_STATE(631)] = 9226, + [SMALL_STATE(632)] = 9270, + [SMALL_STATE(633)] = 9312, + [SMALL_STATE(634)] = 9362, + [SMALL_STATE(635)] = 9412, + [SMALL_STATE(636)] = 9454, + [SMALL_STATE(637)] = 9498, + [SMALL_STATE(638)] = 9540, + [SMALL_STATE(639)] = 9584, + [SMALL_STATE(640)] = 9628, + [SMALL_STATE(641)] = 9672, + [SMALL_STATE(642)] = 9720, + [SMALL_STATE(643)] = 9762, + [SMALL_STATE(644)] = 9804, + [SMALL_STATE(645)] = 9852, + [SMALL_STATE(646)] = 9902, + [SMALL_STATE(647)] = 9943, + [SMALL_STATE(648)] = 9984, + [SMALL_STATE(649)] = 10025, + [SMALL_STATE(650)] = 10066, + [SMALL_STATE(651)] = 10107, + [SMALL_STATE(652)] = 10148, + [SMALL_STATE(653)] = 10189, + [SMALL_STATE(654)] = 10229, + [SMALL_STATE(655)] = 10275, + [SMALL_STATE(656)] = 10321, + [SMALL_STATE(657)] = 10367, + [SMALL_STATE(658)] = 10413, + [SMALL_STATE(659)] = 10459, + [SMALL_STATE(660)] = 10505, + [SMALL_STATE(661)] = 10551, + [SMALL_STATE(662)] = 10597, + [SMALL_STATE(663)] = 10643, + [SMALL_STATE(664)] = 10687, + [SMALL_STATE(665)] = 10733, + [SMALL_STATE(666)] = 10779, + [SMALL_STATE(667)] = 10819, + [SMALL_STATE(668)] = 10863, + [SMALL_STATE(669)] = 10909, + [SMALL_STATE(670)] = 10955, + [SMALL_STATE(671)] = 11001, + [SMALL_STATE(672)] = 11044, + [SMALL_STATE(673)] = 11085, + [SMALL_STATE(674)] = 11126, + [SMALL_STATE(675)] = 11169, + [SMALL_STATE(676)] = 11208, + [SMALL_STATE(677)] = 11249, + [SMALL_STATE(678)] = 11292, + [SMALL_STATE(679)] = 11333, + [SMALL_STATE(680)] = 11371, + [SMALL_STATE(681)] = 11409, + [SMALL_STATE(682)] = 11447, + [SMALL_STATE(683)] = 11485, + [SMALL_STATE(684)] = 11523, + [SMALL_STATE(685)] = 11575, + [SMALL_STATE(686)] = 11627, + [SMALL_STATE(687)] = 11679, + [SMALL_STATE(688)] = 11731, + [SMALL_STATE(689)] = 11783, + [SMALL_STATE(690)] = 11820, + [SMALL_STATE(691)] = 11848, + [SMALL_STATE(692)] = 11876, + [SMALL_STATE(693)] = 11904, + [SMALL_STATE(694)] = 11932, + [SMALL_STATE(695)] = 11960, + [SMALL_STATE(696)] = 11988, + [SMALL_STATE(697)] = 12019, + [SMALL_STATE(698)] = 12046, + [SMALL_STATE(699)] = 12073, + [SMALL_STATE(700)] = 12100, + [SMALL_STATE(701)] = 12127, + [SMALL_STATE(702)] = 12149, + [SMALL_STATE(703)] = 12177, + [SMALL_STATE(704)] = 12205, + [SMALL_STATE(705)] = 12233, + [SMALL_STATE(706)] = 12255, + [SMALL_STATE(707)] = 12277, + [SMALL_STATE(708)] = 12299, + [SMALL_STATE(709)] = 12321, + [SMALL_STATE(710)] = 12349, + [SMALL_STATE(711)] = 12371, + [SMALL_STATE(712)] = 12393, + [SMALL_STATE(713)] = 12415, + [SMALL_STATE(714)] = 12443, + [SMALL_STATE(715)] = 12465, + [SMALL_STATE(716)] = 12482, + [SMALL_STATE(717)] = 12499, + [SMALL_STATE(718)] = 12514, + [SMALL_STATE(719)] = 12532, + [SMALL_STATE(720)] = 12550, + [SMALL_STATE(721)] = 12568, + [SMALL_STATE(722)] = 12586, + [SMALL_STATE(723)] = 12604, + [SMALL_STATE(724)] = 12622, + [SMALL_STATE(725)] = 12640, + [SMALL_STATE(726)] = 12658, + [SMALL_STATE(727)] = 12676, + [SMALL_STATE(728)] = 12692, + [SMALL_STATE(729)] = 12714, + [SMALL_STATE(730)] = 12736, + [SMALL_STATE(731)] = 12758, + [SMALL_STATE(732)] = 12776, + [SMALL_STATE(733)] = 12794, + [SMALL_STATE(734)] = 12812, + [SMALL_STATE(735)] = 12830, + [SMALL_STATE(736)] = 12848, + [SMALL_STATE(737)] = 12866, + [SMALL_STATE(738)] = 12884, + [SMALL_STATE(739)] = 12902, + [SMALL_STATE(740)] = 12920, + [SMALL_STATE(741)] = 12942, + [SMALL_STATE(742)] = 12964, + [SMALL_STATE(743)] = 12982, + [SMALL_STATE(744)] = 12992, + [SMALL_STATE(745)] = 13010, + [SMALL_STATE(746)] = 13028, + [SMALL_STATE(747)] = 13047, + [SMALL_STATE(748)] = 13062, + [SMALL_STATE(749)] = 13077, + [SMALL_STATE(750)] = 13086, + [SMALL_STATE(751)] = 13105, + [SMALL_STATE(752)] = 13120, + [SMALL_STATE(753)] = 13139, + [SMALL_STATE(754)] = 13158, + [SMALL_STATE(755)] = 13173, + [SMALL_STATE(756)] = 13188, + [SMALL_STATE(757)] = 13207, + [SMALL_STATE(758)] = 13222, + [SMALL_STATE(759)] = 13241, + [SMALL_STATE(760)] = 13256, + [SMALL_STATE(761)] = 13275, + [SMALL_STATE(762)] = 13290, + [SMALL_STATE(763)] = 13299, + [SMALL_STATE(764)] = 13318, + [SMALL_STATE(765)] = 13333, + [SMALL_STATE(766)] = 13342, + [SMALL_STATE(767)] = 13357, + [SMALL_STATE(768)] = 13372, + [SMALL_STATE(769)] = 13381, + [SMALL_STATE(770)] = 13396, + [SMALL_STATE(771)] = 13411, + [SMALL_STATE(772)] = 13426, + [SMALL_STATE(773)] = 13441, + [SMALL_STATE(774)] = 13456, + [SMALL_STATE(775)] = 13472, + [SMALL_STATE(776)] = 13486, + [SMALL_STATE(777)] = 13496, + [SMALL_STATE(778)] = 13512, + [SMALL_STATE(779)] = 13520, + [SMALL_STATE(780)] = 13528, + [SMALL_STATE(781)] = 13544, + [SMALL_STATE(782)] = 13560, + [SMALL_STATE(783)] = 13576, + [SMALL_STATE(784)] = 13586, + [SMALL_STATE(785)] = 13602, + [SMALL_STATE(786)] = 13618, + [SMALL_STATE(787)] = 13632, + [SMALL_STATE(788)] = 13646, + [SMALL_STATE(789)] = 13660, + [SMALL_STATE(790)] = 13668, + [SMALL_STATE(791)] = 13680, + [SMALL_STATE(792)] = 13696, + [SMALL_STATE(793)] = 13712, + [SMALL_STATE(794)] = 13726, + [SMALL_STATE(795)] = 13739, + [SMALL_STATE(796)] = 13752, + [SMALL_STATE(797)] = 13761, + [SMALL_STATE(798)] = 13770, + [SMALL_STATE(799)] = 13777, + [SMALL_STATE(800)] = 13786, + [SMALL_STATE(801)] = 13795, + [SMALL_STATE(802)] = 13808, + [SMALL_STATE(803)] = 13817, + [SMALL_STATE(804)] = 13830, + [SMALL_STATE(805)] = 13843, + [SMALL_STATE(806)] = 13852, + [SMALL_STATE(807)] = 13861, + [SMALL_STATE(808)] = 13874, + [SMALL_STATE(809)] = 13883, + [SMALL_STATE(810)] = 13892, + [SMALL_STATE(811)] = 13905, + [SMALL_STATE(812)] = 13914, + [SMALL_STATE(813)] = 13923, + [SMALL_STATE(814)] = 13932, + [SMALL_STATE(815)] = 13941, + [SMALL_STATE(816)] = 13954, + [SMALL_STATE(817)] = 13967, + [SMALL_STATE(818)] = 13976, + [SMALL_STATE(819)] = 13985, + [SMALL_STATE(820)] = 13994, + [SMALL_STATE(821)] = 14003, + [SMALL_STATE(822)] = 14012, + [SMALL_STATE(823)] = 14021, + [SMALL_STATE(824)] = 14034, + [SMALL_STATE(825)] = 14047, + [SMALL_STATE(826)] = 14056, + [SMALL_STATE(827)] = 14069, + [SMALL_STATE(828)] = 14078, + [SMALL_STATE(829)] = 14087, + [SMALL_STATE(830)] = 14097, + [SMALL_STATE(831)] = 14107, + [SMALL_STATE(832)] = 14117, + [SMALL_STATE(833)] = 14123, + [SMALL_STATE(834)] = 14133, + [SMALL_STATE(835)] = 14143, + [SMALL_STATE(836)] = 14153, + [SMALL_STATE(837)] = 14163, + [SMALL_STATE(838)] = 14173, + [SMALL_STATE(839)] = 14179, + [SMALL_STATE(840)] = 14189, + [SMALL_STATE(841)] = 14199, + [SMALL_STATE(842)] = 14209, + [SMALL_STATE(843)] = 14219, + [SMALL_STATE(844)] = 14229, + [SMALL_STATE(845)] = 14239, + [SMALL_STATE(846)] = 14249, + [SMALL_STATE(847)] = 14259, + [SMALL_STATE(848)] = 14269, + [SMALL_STATE(849)] = 14279, + [SMALL_STATE(850)] = 14289, + [SMALL_STATE(851)] = 14299, + [SMALL_STATE(852)] = 14309, + [SMALL_STATE(853)] = 14319, + [SMALL_STATE(854)] = 14329, + [SMALL_STATE(855)] = 14339, + [SMALL_STATE(856)] = 14345, + [SMALL_STATE(857)] = 14355, + [SMALL_STATE(858)] = 14365, + [SMALL_STATE(859)] = 14371, + [SMALL_STATE(860)] = 14381, + [SMALL_STATE(861)] = 14391, + [SMALL_STATE(862)] = 14401, + [SMALL_STATE(863)] = 14411, + [SMALL_STATE(864)] = 14421, + [SMALL_STATE(865)] = 14431, + [SMALL_STATE(866)] = 14441, + [SMALL_STATE(867)] = 14451, + [SMALL_STATE(868)] = 14459, + [SMALL_STATE(869)] = 14469, + [SMALL_STATE(870)] = 14479, + [SMALL_STATE(871)] = 14489, + [SMALL_STATE(872)] = 14496, + [SMALL_STATE(873)] = 14503, + [SMALL_STATE(874)] = 14510, + [SMALL_STATE(875)] = 14517, + [SMALL_STATE(876)] = 14524, + [SMALL_STATE(877)] = 14531, + [SMALL_STATE(878)] = 14538, + [SMALL_STATE(879)] = 14545, + [SMALL_STATE(880)] = 14552, + [SMALL_STATE(881)] = 14559, + [SMALL_STATE(882)] = 14566, + [SMALL_STATE(883)] = 14573, + [SMALL_STATE(884)] = 14580, + [SMALL_STATE(885)] = 14587, + [SMALL_STATE(886)] = 14594, + [SMALL_STATE(887)] = 14599, + [SMALL_STATE(888)] = 14604, + [SMALL_STATE(889)] = 14611, + [SMALL_STATE(890)] = 14618, + [SMALL_STATE(891)] = 14625, + [SMALL_STATE(892)] = 14632, + [SMALL_STATE(893)] = 14639, + [SMALL_STATE(894)] = 14646, + [SMALL_STATE(895)] = 14653, + [SMALL_STATE(896)] = 14660, + [SMALL_STATE(897)] = 14667, + [SMALL_STATE(898)] = 14674, + [SMALL_STATE(899)] = 14681, + [SMALL_STATE(900)] = 14688, + [SMALL_STATE(901)] = 14695, + [SMALL_STATE(902)] = 14702, + [SMALL_STATE(903)] = 14709, + [SMALL_STATE(904)] = 14716, + [SMALL_STATE(905)] = 14723, + [SMALL_STATE(906)] = 14730, + [SMALL_STATE(907)] = 14737, + [SMALL_STATE(908)] = 14744, + [SMALL_STATE(909)] = 14751, + [SMALL_STATE(910)] = 14758, + [SMALL_STATE(911)] = 14765, + [SMALL_STATE(912)] = 14772, + [SMALL_STATE(913)] = 14779, + [SMALL_STATE(914)] = 14786, + [SMALL_STATE(915)] = 14793, + [SMALL_STATE(916)] = 14800, + [SMALL_STATE(917)] = 14807, + [SMALL_STATE(918)] = 14814, + [SMALL_STATE(919)] = 14821, + [SMALL_STATE(920)] = 14828, + [SMALL_STATE(921)] = 14835, + [SMALL_STATE(922)] = 14842, + [SMALL_STATE(923)] = 14849, + [SMALL_STATE(924)] = 14856, + [SMALL_STATE(925)] = 14863, + [SMALL_STATE(926)] = 14870, + [SMALL_STATE(927)] = 14877, + [SMALL_STATE(928)] = 14884, + [SMALL_STATE(929)] = 14891, + [SMALL_STATE(930)] = 14898, + [SMALL_STATE(931)] = 14905, + [SMALL_STATE(932)] = 14912, + [SMALL_STATE(933)] = 14919, + [SMALL_STATE(934)] = 14926, + [SMALL_STATE(935)] = 14933, + [SMALL_STATE(936)] = 14940, + [SMALL_STATE(937)] = 14947, + [SMALL_STATE(938)] = 14952, + [SMALL_STATE(939)] = 14959, + [SMALL_STATE(940)] = 14966, + [SMALL_STATE(941)] = 14973, + [SMALL_STATE(942)] = 14980, + [SMALL_STATE(943)] = 14985, + [SMALL_STATE(944)] = 14992, + [SMALL_STATE(945)] = 14999, + [SMALL_STATE(946)] = 15006, + [SMALL_STATE(947)] = 15013, + [SMALL_STATE(948)] = 15020, + [SMALL_STATE(949)] = 15027, + [SMALL_STATE(950)] = 15034, + [SMALL_STATE(951)] = 15041, + [SMALL_STATE(952)] = 15048, + [SMALL_STATE(953)] = 15055, + [SMALL_STATE(954)] = 15062, + [SMALL_STATE(955)] = 15069, + [SMALL_STATE(956)] = 15076, + [SMALL_STATE(957)] = 15083, + [SMALL_STATE(958)] = 15090, + [SMALL_STATE(959)] = 15097, + [SMALL_STATE(960)] = 15104, + [SMALL_STATE(961)] = 15111, + [SMALL_STATE(962)] = 15118, + [SMALL_STATE(963)] = 15125, + [SMALL_STATE(964)] = 15132, + [SMALL_STATE(965)] = 15139, + [SMALL_STATE(966)] = 15144, + [SMALL_STATE(967)] = 15151, + [SMALL_STATE(968)] = 15158, + [SMALL_STATE(969)] = 15165, + [SMALL_STATE(970)] = 15172, + [SMALL_STATE(971)] = 15179, + [SMALL_STATE(972)] = 15186, + [SMALL_STATE(973)] = 15193, + [SMALL_STATE(974)] = 15200, + [SMALL_STATE(975)] = 15207, + [SMALL_STATE(976)] = 15214, + [SMALL_STATE(977)] = 15221, + [SMALL_STATE(978)] = 15228, + [SMALL_STATE(979)] = 15235, + [SMALL_STATE(980)] = 15240, + [SMALL_STATE(981)] = 15247, + [SMALL_STATE(982)] = 15254, + [SMALL_STATE(983)] = 15261, + [SMALL_STATE(984)] = 15265, + [SMALL_STATE(985)] = 15269, + [SMALL_STATE(986)] = 15273, + [SMALL_STATE(987)] = 15277, + [SMALL_STATE(988)] = 15281, + [SMALL_STATE(989)] = 15285, + [SMALL_STATE(990)] = 15289, + [SMALL_STATE(991)] = 15293, + [SMALL_STATE(992)] = 15297, + [SMALL_STATE(993)] = 15301, + [SMALL_STATE(994)] = 15305, + [SMALL_STATE(995)] = 15309, + [SMALL_STATE(996)] = 15313, + [SMALL_STATE(997)] = 15317, + [SMALL_STATE(998)] = 15321, + [SMALL_STATE(999)] = 15325, + [SMALL_STATE(1000)] = 15329, + [SMALL_STATE(1001)] = 15333, + [SMALL_STATE(1002)] = 15337, + [SMALL_STATE(1003)] = 15341, + [SMALL_STATE(1004)] = 15345, + [SMALL_STATE(1005)] = 15349, + [SMALL_STATE(1006)] = 15353, + [SMALL_STATE(1007)] = 15357, + [SMALL_STATE(1008)] = 15361, + [SMALL_STATE(1009)] = 15365, + [SMALL_STATE(1010)] = 15369, + [SMALL_STATE(1011)] = 15373, + [SMALL_STATE(1012)] = 15377, + [SMALL_STATE(1013)] = 15381, + [SMALL_STATE(1014)] = 15385, + [SMALL_STATE(1015)] = 15389, + [SMALL_STATE(1016)] = 15393, + [SMALL_STATE(1017)] = 15397, + [SMALL_STATE(1018)] = 15401, + [SMALL_STATE(1019)] = 15405, + [SMALL_STATE(1020)] = 15409, + [SMALL_STATE(1021)] = 15413, + [SMALL_STATE(1022)] = 15417, + [SMALL_STATE(1023)] = 15421, + [SMALL_STATE(1024)] = 15425, + [SMALL_STATE(1025)] = 15429, + [SMALL_STATE(1026)] = 15433, + [SMALL_STATE(1027)] = 15437, + [SMALL_STATE(1028)] = 15441, + [SMALL_STATE(1029)] = 15445, + [SMALL_STATE(1030)] = 15449, + [SMALL_STATE(1031)] = 15453, + [SMALL_STATE(1032)] = 15457, + [SMALL_STATE(1033)] = 15461, + [SMALL_STATE(1034)] = 15465, + [SMALL_STATE(1035)] = 15469, + [SMALL_STATE(1036)] = 15473, + [SMALL_STATE(1037)] = 15477, + [SMALL_STATE(1038)] = 15481, + [SMALL_STATE(1039)] = 15485, + [SMALL_STATE(1040)] = 15489, + [SMALL_STATE(1041)] = 15493, + [SMALL_STATE(1042)] = 15497, + [SMALL_STATE(1043)] = 15501, + [SMALL_STATE(1044)] = 15505, + [SMALL_STATE(1045)] = 15509, + [SMALL_STATE(1046)] = 15513, + [SMALL_STATE(1047)] = 15517, + [SMALL_STATE(1048)] = 15521, + [SMALL_STATE(1049)] = 15525, + [SMALL_STATE(1050)] = 15529, + [SMALL_STATE(1051)] = 15533, + [SMALL_STATE(1052)] = 15537, + [SMALL_STATE(1053)] = 15541, + [SMALL_STATE(1054)] = 15545, + [SMALL_STATE(1055)] = 15549, + [SMALL_STATE(1056)] = 15553, + [SMALL_STATE(1057)] = 15557, + [SMALL_STATE(1058)] = 15561, + [SMALL_STATE(1059)] = 15565, + [SMALL_STATE(1060)] = 15569, + [SMALL_STATE(1061)] = 15573, + [SMALL_STATE(1062)] = 15577, + [SMALL_STATE(1063)] = 15581, + [SMALL_STATE(1064)] = 15585, + [SMALL_STATE(1065)] = 15589, + [SMALL_STATE(1066)] = 15593, + [SMALL_STATE(1067)] = 15597, + [SMALL_STATE(1068)] = 15601, + [SMALL_STATE(1069)] = 15605, + [SMALL_STATE(1070)] = 15609, + [SMALL_STATE(1071)] = 15613, + [SMALL_STATE(1072)] = 15617, + [SMALL_STATE(1073)] = 15621, + [SMALL_STATE(1074)] = 15625, + [SMALL_STATE(1075)] = 15629, + [SMALL_STATE(1076)] = 15633, + [SMALL_STATE(1077)] = 15637, + [SMALL_STATE(1078)] = 15641, + [SMALL_STATE(1079)] = 15645, + [SMALL_STATE(1080)] = 15649, + [SMALL_STATE(1081)] = 15653, + [SMALL_STATE(1082)] = 15657, + [SMALL_STATE(1083)] = 15661, + [SMALL_STATE(1084)] = 15665, + [SMALL_STATE(1085)] = 15669, + [SMALL_STATE(1086)] = 15673, + [SMALL_STATE(1087)] = 15677, + [SMALL_STATE(1088)] = 15681, + [SMALL_STATE(1089)] = 15685, + [SMALL_STATE(1090)] = 15689, + [SMALL_STATE(1091)] = 15693, + [SMALL_STATE(1092)] = 15697, }; 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(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), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), [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), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [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), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), [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), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), [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), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), [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), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [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), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(638), [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), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(857), [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), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), [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), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), [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), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), [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), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [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), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [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), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(494), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(45), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fenced_div_block_repeat1, 2, 0, 0), SHIFT_REPEAT(931), [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), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 2), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), [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), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(501), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 1), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 1), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(506), + [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(495), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), + [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 1), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 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), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(488), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(496), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(638), [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), + [767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(857), [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), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 1), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 1), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(93), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(939), [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), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), + [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(504), + [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 1), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 1), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [1087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(505), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(954), [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), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), [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), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [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(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), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(499), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(693), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 1), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 1), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(638), [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), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(695), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(481), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(927), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(693), [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, 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), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(482), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(981), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [1333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 1, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indented_code_block, 2, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), + [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(857), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), + [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(434), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(555), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, 0, 5), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indented_code_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 0), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 3, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 3, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 4, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 2, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading1, 3, 0, 3), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__setext_heading2, 3, 0, 3), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__indented_chunk, 4, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 4, 0, 11), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 4, 0, 11), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 4, 0, 11), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 4, 0, 11), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 4, 0, 11), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 4, 0, 11), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 4, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_quote, 5, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 5, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 13), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 5, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 5, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 6, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 13), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 6, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 7, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 8, 0, 0), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_div_block, 8, 0, 0), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 9, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 2), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 6), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_not_section, 1, 0, 1), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 7), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 6), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 7), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 6), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 7), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 6), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 1, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 7), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 6), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 7), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 6), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thematic_break, 2, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 2), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 2), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 7), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 2), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fenced_code_block, 3, 0, 0), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 2), [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), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 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), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), [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), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 1, 0, 0), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__caption_line_repeat1, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 1, 0, 0), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 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), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 2, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(572), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_cell_contents, 3, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), + [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(539), + [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(665), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(615), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), SHIFT_REPEAT(636), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__indented_chunk_repeat1, 2, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__whitespace, 1, 0, 0), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__whitespace, 1, 0, 0), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 2, 0, 0), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_table_cell_contents_repeat1, 2, 0, 0), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_code_span, 3, 0, 0), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 3, 0, 0), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_latex_span, 2, 0, 0), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(585), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(642), + [2109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(586), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__code_line, 1, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 9), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 3, 0, 0), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 1, 0, 0), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(647), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 2, 0, 0), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [2167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(609), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__caption_line, 3, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(633), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(633), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), SHIFT_REPEAT(663), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_line, 1, 0, 0), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(653), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__caption_line_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(645), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_value_value_repeat1, 2, 0, 0), SHIFT_REPEAT(667), [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), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), [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), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_table_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [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), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_key_value_value_repeat2, 2, 0, 0), [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), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(483), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(506), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(488), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(493), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(484), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(485), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 4), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), + [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(935), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 12), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(717), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 1, 0, 0), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 1, 0, 0), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat1, 2, 0, 0), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(868), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), SHIFT_REPEAT(868), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 15), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 1, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), SHIFT_REPEAT(747), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat2, 2, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 14), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 5, 0, 0), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 5, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 4, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 4, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 3, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 2, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_key_value_value, 1, 0, 0), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 3, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 3, 0, 0), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commonmark_attribute_repeat3, 2, 0, 0), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 1, 0, 3), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 8), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), [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), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_info_string, 1, 0, 0), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 3, 2, 0), + [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 5, 0, 0), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 5, 2, 0), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 4, 0, 0), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qmd_attribute, 1, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 4, 2, 0), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2774] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 2, 2, 0), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_attribute, 3, 0, 0), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_attribute, 6, 2, 0), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_attribute, 3, 1, 10), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), }; enum ts_external_scanner_symbol_identifiers { @@ -58640,7 +58374,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__latex_span_close] = sym__latex_span_close, }; -static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[46][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -58905,7 +58639,7 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { }, [8] = { [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, @@ -58935,14 +58669,13 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [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, }, [9] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__block_close] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -58972,6 +58705,7 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [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, @@ -59015,6 +58749,8 @@ 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, @@ -59023,8 +58759,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, @@ -59044,13 +58778,13 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [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, }, [12] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__block_close] = true, [ts_external_token__block_quote_start] = true, [ts_external_token__indented_chunk_start] = true, [ts_external_token_atx_h1_marker] = true, @@ -59087,7 +58821,6 @@ 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, @@ -59096,6 +58829,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, @@ -59115,7 +58850,6 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [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, @@ -59162,19 +58896,13 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [20] = { - [ts_external_token__line_ending] = true, - [ts_external_token__block_close] = true, - [ts_external_token__display_math_state_track_marker] = true, - [ts_external_token__inline_math_state_track_marker] = true, - }, - [21] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__eof] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, - [22] = { + [21] = { [ts_external_token__line_ending] = true, [ts_external_token_block_continuation] = true, [ts_external_token__eof] = true, @@ -59184,17 +58912,23 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__code_span_start] = true, [ts_external_token__latex_span_start] = true, }, - [23] = { + [22] = { [ts_external_token__line_ending] = true, - [ts_external_token__eof] = true, + [ts_external_token__block_close] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, - [24] = { + [23] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__display_math_state_track_marker] = true, [ts_external_token__inline_math_state_track_marker] = true, }, + [24] = { + [ts_external_token__line_ending] = true, + [ts_external_token__eof] = true, + [ts_external_token__display_math_state_track_marker] = true, + [ts_external_token__inline_math_state_track_marker] = true, + }, [25] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, @@ -59230,16 +58964,20 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__inline_math_state_track_marker] = true, }, [30] = { - [ts_external_token__code_span_close] = true, + [ts_external_token__latex_span_close] = true, }, [31] = { - [ts_external_token__latex_span_close] = true, + [ts_external_token__code_span_close] = true, }, [32] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, }, [33] = { + [ts_external_token__display_math_state_track_marker] = true, + [ts_external_token__inline_math_state_track_marker] = true, + }, + [34] = { [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -59247,44 +58985,44 @@ static const bool ts_external_scanner_states[45][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, }, - [34] = { + [35] = { [ts_external_token__line_ending] = true, }, - [35] = { + [36] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, [ts_external_token__pipe_table_line_ending] = true, }, - [36] = { - [ts_external_token_fenced_div_note_id] = true, - }, [37] = { - [ts_external_token_block_continuation] = true, + [ts_external_token_fenced_div_note_id] = true, }, [38] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, }, [39] = { + [ts_external_token_block_continuation] = true, + }, + [40] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_backtick] = true, }, - [40] = { + [41] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_tilde] = true, }, - [41] = { + [42] = { [ts_external_token_block_continuation] = true, [ts_external_token__close_block] = true, }, - [42] = { + [43] = { [ts_external_token__block_close] = true, [ts_external_token_block_continuation] = true, }, - [43] = { + [44] = { [ts_external_token__close_block] = true, }, - [44] = { + [45] = { [ts_external_token__block_close] = true, }, };